Submission #3228495


Source Code Expand

#include <iostream>
#include <vector>
#include <numeric>//accumulate(v.begin(), v.end(), 0);
#include <algorithm>//sort(v.begin(),v.end());
#include <string>//
#include <cmath>
#include <iomanip> //setprecision(2)
using namespace std;
#define ll long long
#define rep(i, n) for(int i = 0; i < (int)(n); i++)

int main(){
        string s;
        int N;
        cin >> s;
        N=s.size();
        ll ans = 0;
        rep(i,N) {
                ll sm = 0;
                ll a = s[0] - '0';
                rep(j,N) {
                        if (i & (1 << j)) {
                                sm += a;
                                a = 0;
                        }
                        a = a * 10 + s[j + 1] - '0';
                }
                sm += a;
                ans += sm;
        }
        cout << ans << endl;

        return 0;
}

Submission Info

Submission Time
Task C - Many Formulas
User ajifurai
Language C++14 (GCC 5.4.1)
Score 0
Code Size 887 Byte
Status WA
Exec Time 1 ms
Memory 256 KB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 0 / 300
Status AC
WA × 12
Set Name Test Cases
Sample
All 01.txt, 02.txt, 03.txt, 04.txt, 05.txt, 06.txt, 07.txt, 08.txt, 09.txt, 10.txt, sample_01.txt, sample_02.txt
Case Name Status Exec Time Memory
01.txt WA 1 ms 256 KB
02.txt WA 1 ms 256 KB
03.txt WA 1 ms 256 KB
04.txt WA 1 ms 256 KB
05.txt WA 1 ms 256 KB
06.txt WA 1 ms 256 KB
07.txt WA 1 ms 256 KB
08.txt WA 1 ms 256 KB
09.txt WA 1 ms 256 KB
10.txt WA 1 ms 256 KB
sample_01.txt WA 1 ms 256 KB
sample_02.txt WA 1 ms 256 KB