Task: | Lukujono |
Sender: | eXeP |
Submission time: | 2015-01-29 12:51:59 +0200 |
Language: | C++ |
Status: | READY |
Result: | 0 |
group | verdict | score |
---|---|---|
#1 | RUNTIME ERROR | 0 |
#2 | RUNTIME ERROR | 0 |
#3 | RUNTIME ERROR | 0 |
test | verdict | time | group | |
---|---|---|---|---|
#1 | RUNTIME ERROR | 1.86 s | 1 | details |
#2 | RUNTIME ERROR | 2.12 s | 1 | details |
#3 | RUNTIME ERROR | 1.61 s | 1 | details |
#4 | RUNTIME ERROR | 1.69 s | 1 | details |
#5 | RUNTIME ERROR | 2.29 s | 1 | details |
#6 | RUNTIME ERROR | 1.82 s | 1 | details |
#7 | RUNTIME ERROR | 2.06 s | 1 | details |
#8 | RUNTIME ERROR | 1.78 s | 1 | details |
#9 | RUNTIME ERROR | 2.24 s | 2 | details |
#10 | RUNTIME ERROR | 1.87 s | 2 | details |
#11 | RUNTIME ERROR | 1.88 s | 2 | details |
#12 | RUNTIME ERROR | 1.59 s | 2 | details |
#13 | RUNTIME ERROR | 2.07 s | 2 | details |
#14 | RUNTIME ERROR | 2.12 s | 2 | details |
#15 | RUNTIME ERROR | 2.13 s | 2 | details |
#16 | RUNTIME ERROR | 1.76 s | 2 | details |
#17 | RUNTIME ERROR | 1.90 s | 3 | details |
#18 | RUNTIME ERROR | 1.98 s | 3 | details |
#19 | RUNTIME ERROR | 1.65 s | 3 | details |
#20 | RUNTIME ERROR | 1.69 s | 3 | details |
#21 | RUNTIME ERROR | 1.78 s | 3 | details |
#22 | RUNTIME ERROR | 1.98 s | 3 | details |
#23 | RUNTIME ERROR | 1.62 s | 3 | details |
#24 | RUNTIME ERROR | 1.89 s | 3 | details |
Code
/* * File: main.cpp * Author: piekask * * Created on 29. tammikuuta 2015, 12:37 */ #include <bits/stdc++.h> using namespace std; /* * */ vector<long long> u; long long hae(int n){ long long r = 0; if(n==0) return 0; else if(n==1) return 1; else if(u[n]!=0) return u[n]; for(double i = 2; i <= n; i++){ int l = floor((n/i)); if(u[l]==0) u[l] = hae(l); r+=u[l]; } return r; } int main(int argc, char** argv) { cin.sync_with_stdio(0); cin.tie(0); int n; cin >> n; u = vector<long long> (50000001, 0); cout << hae(n) << endl; return 0; }
Test details
Test 1
Group: 1
Verdict: RUNTIME ERROR
input |
---|
542 |
correct output |
---|
11942 |
user output |
---|
(empty) |
Test 2
Group: 1
Verdict: RUNTIME ERROR
input |
---|
929 |
correct output |
---|
29913 |
user output |
---|
(empty) |
Test 3
Group: 1
Verdict: RUNTIME ERROR
input |
---|
801 |
correct output |
---|
23460 |
user output |
---|
(empty) |
Test 4
Group: 1
Verdict: RUNTIME ERROR
input |
---|
935 |
correct output |
---|
30006 |
user output |
---|
(empty) |
Test 5
Group: 1
Verdict: RUNTIME ERROR
input |
---|
998 |
correct output |
---|
33766 |
user output |
---|
(empty) |
Test 6
Group: 1
Verdict: RUNTIME ERROR
input |
---|
942 |
correct output |
---|
30490 |
user output |
---|
(empty) |
Test 7
Group: 1
Verdict: RUNTIME ERROR
input |
---|
736 |
correct output |
---|
20285 |
user output |
---|
(empty) |
Test 8
Group: 1
Verdict: RUNTIME ERROR
input |
---|
930 |
correct output |
---|
29975 |
user output |
---|
(empty) |
Test 9
Group: 2
Verdict: RUNTIME ERROR
input |
---|
95404 |
correct output |
---|
90172356 |
user output |
---|
(empty) |
Test 10
Group: 2
Verdict: RUNTIME ERROR
input |
---|
98060 |
correct output |
---|
94687572 |
user output |
---|
(empty) |
Test 11
Group: 2
Verdict: RUNTIME ERROR
input |
---|
69495 |
correct output |
---|
52308390 |
user output |
---|
(empty) |
Test 12
Group: 2
Verdict: RUNTIME ERROR
input |
---|
92197 |
correct output |
---|
85306979 |
user output |
---|
(empty) |
Test 13
Group: 2
Verdict: RUNTIME ERROR
input |
---|
53418 |
correct output |
---|
32957881 |
user output |
---|
(empty) |
Test 14
Group: 2
Verdict: RUNTIME ERROR
input |
---|
97377 |
correct output |
---|
93859995 |
user output |
---|
(empty) |
Test 15
Group: 2
Verdict: RUNTIME ERROR
input |
---|
68065 |
correct output |
---|
50223001 |
user output |
---|
(empty) |
Test 16
Group: 2
Verdict: RUNTIME ERROR
input |
---|
95463 |
correct output |
---|
90201672 |
user output |
---|
(empty) |
Test 17
Group: 3
Verdict: RUNTIME ERROR
input |
---|
74323456 |
correct output |
---|
8975396101231 |
user output |
---|
(empty) |
Test 18
Group: 3
Verdict: RUNTIME ERROR
input |
---|
92132055 |
correct output |
---|
13006378374515 |
user output |
---|
(empty) |
Test 19
Group: 3
Verdict: RUNTIME ERROR
input |
---|
55135704 |
correct output |
---|
5354656932672 |
user output |
---|
(empty) |
Test 20
Group: 3
Verdict: RUNTIME ERROR
input |
---|
98613338 |
correct output |
---|
14631125716007 |
user output |
---|
(empty) |
Test 21
Group: 3
Verdict: RUNTIME ERROR
input |
---|
75558302 |
correct output |
---|
9238208186405 |
user output |
---|
(empty) |
Test 22
Group: 3
Verdict: RUNTIME ERROR
input |
---|
94968034 |
correct output |
---|
13713914468591 |
user output |
---|
(empty) |
Test 23
Group: 3
Verdict: RUNTIME ERROR
input |
---|
52163652 |
correct output |
---|
4858985762438 |
user output |
---|
(empty) |
Test 24
Group: 3
Verdict: RUNTIME ERROR
input |
---|
94830583 |
correct output |
---|
13674294022172 |
user output |
---|
(empty) |