Task: | Kyselyt |
Sender: | koneistitLiikaa |
Submission time: | 2017-10-15 22:16:38 +0300 |
Language: | C++ |
Status: | READY |
Result: | 0 |
group | verdict | score |
---|---|---|
#1 | WRONG ANSWER | 0 |
#2 | WRONG ANSWER | 0 |
#3 | WRONG ANSWER | 0 |
test | verdict | time | group | |
---|---|---|---|---|
#1 | WRONG ANSWER | 0.06 s | 1 | details |
#2 | WRONG ANSWER | 0.07 s | 2 | details |
#3 | WRONG ANSWER | 0.06 s | 3 | details |
Compiler report
input/code.cpp: In function 'int main()': input/code.cpp:41:5: warning: unused variable 'm' [-Wunused-variable] ll m = (n-f)%(c+1); ^
Code
#include <iostream> using namespace std; typedef long long ll; ll p(int n, int x) { return x == 0 ? 1 : n*p(n, x-1); } int main() { int const MAGICAL_CONSTANT = 17; ll t[MAGICAL_CONSTANT]; ll s[MAGICAL_CONSTANT]; ll a = 0; for (int i{0}; i<MAGICAL_CONSTANT; i++) { t[i] = p(10, i) * 9 * (i+1); a += t[i]; s[i] = a; } // for (int i{0}; i<MAGICAL_CONSTANT; i++) { // cout << t[i] << endl; // } // for (int i{0}; i<MAGICAL_CONSTANT; i++) { // cout << s[i] << endl; // } ll n; cin >> n; int c = 0; for (int i{0}; i<MAGICAL_CONSTANT; i++) { if (s[i] < n) { c++; } } ll f = s[c-1]; // cout << f << endl; ll r = p(10,c) + (n-f)/(c+1); ll m = (n-f)%(c+1); cout << ((r % p(10,c)) / p(10,(4-c)%4)) << endl; // cout << r << endl; // cout << m << endl; // cout << n << " " << c; return 0; }
Test details
Test 1
Group: 1
Verdict: WRONG ANSWER
input |
---|
1000 582 214 723 273 ... |
correct output |
---|
0 1 7 7 6 ... |
user output |
---|
0 |
Test 2
Group: 2
Verdict: WRONG ANSWER
input |
---|
1000 615664 916441 627600 279508 ... |
correct output |
---|
1 2 3 2 2 ... |
user output |
---|
0 |
Test 3
Group: 3
Verdict: WRONG ANSWER
input |
---|
1000 672274832941907421 260504693279721732 646999966092970935 100853063389774434 ... |
correct output |
---|
7 2 2 0 9 ... |
user output |
---|
0 |