| Task: | Lukujono |
| Sender: | MusserO |
| Submission time: | 2015-01-29 17:11:17 +0200 |
| Language: | Java |
| Status: | READY |
| Result: | 16 |
| group | verdict | score |
|---|---|---|
| #1 | ACCEPTED | 16 |
| #2 | TIME LIMIT EXCEEDED | 0 |
| #3 | TIME LIMIT EXCEEDED | 0 |
| test | verdict | time | group | |
|---|---|---|---|---|
| #1 | ACCEPTED | 0.05 s | 1 | details |
| #2 | ACCEPTED | 0.05 s | 1 | details |
| #3 | ACCEPTED | 0.06 s | 1 | details |
| #4 | ACCEPTED | 0.06 s | 1 | details |
| #5 | ACCEPTED | 0.06 s | 1 | details |
| #6 | ACCEPTED | 0.05 s | 1 | details |
| #7 | ACCEPTED | 0.06 s | 1 | details |
| #8 | ACCEPTED | 0.05 s | 1 | details |
| #9 | TIME LIMIT EXCEEDED | -- | 2 | details |
| #10 | TIME LIMIT EXCEEDED | -- | 2 | details |
| #11 | ACCEPTED | 3.65 s | 2 | details |
| #12 | TIME LIMIT EXCEEDED | -- | 2 | details |
| #13 | ACCEPTED | 2.33 s | 2 | details |
| #14 | TIME LIMIT EXCEEDED | -- | 2 | details |
| #15 | ACCEPTED | 3.52 s | 2 | details |
| #16 | TIME LIMIT EXCEEDED | -- | 2 | details |
| #17 | TIME LIMIT EXCEEDED | -- | 3 | details |
| #18 | TIME LIMIT EXCEEDED | -- | 3 | details |
| #19 | TIME LIMIT EXCEEDED | -- | 3 | details |
| #20 | TIME LIMIT EXCEEDED | -- | 3 | details |
| #21 | TIME LIMIT EXCEEDED | -- | 3 | details |
| #22 | TIME LIMIT EXCEEDED | -- | 3 | details |
| #23 | TIME LIMIT EXCEEDED | -- | 3 | details |
| #24 | TIME LIMIT EXCEEDED | -- | 3 | details |
Code
import java.io.*;
import java.util.*;
public class Lukujono {
public static void main(String[] args) {
IO io = new IO();
int n = io.nextInt();
io.println(U(n));
io.close();
}
static int U(int n){
if (n == 0){
return 0;
} else if (n == 1) {
return 1;
}
else {
int x = 0;
for (int i = 2; i <= n; ++i){
x += U(n/i);
}
return x;
}
}
}
class IO extends PrintWriter {
private InputStreamReader r;
private static final int BUFSIZE = 1 << 15;
private char[] buf;
private int bufc;
private int bufi;
private StringBuilder sb;
public IO() {
super(new BufferedOutputStream(System.out));
r = new InputStreamReader(System.in);
buf = new char[BUFSIZE];
bufc = 0;
bufi = 0;
sb = new StringBuilder();
}
private void fillBuf() throws IOException {
bufi = 0;
bufc = 0;
while(bufc == 0) {
bufc = r.read(buf, 0, BUFSIZE);
if(bufc == -1) {
bufc = 0;
return;
}
}
}
private boolean pumpBuf() throws IOException {
if(bufi == bufc) {
fillBuf();
}
return bufc != 0;
}
private boolean isDelimiter(char c) {
return c == ' ' || c == '\t' || c == '\n' || c == '\r' || c == '\f';
}
private void eatDelimiters() throws IOException {
while(true) {
if(bufi == bufc) {
fillBuf();
if(bufc == 0) throw new RuntimeException("IO: Out of input.");
}
if(!isDelimiter(buf[bufi])) break;
++bufi;
}
}
public String next() {
try {
sb.setLength(0);
eatDelimiters();
int start = bufi;
while(true) {
if(bufi == bufc) {
sb.append(buf, start, bufi - start);
fillBuf();
start = 0;
if(bufc == 0) break;
}
if(isDelimiter(buf[bufi])) break;
++bufi;
}
sb.append(buf, start, bufi - start);
return sb.toString();
} catch(IOException e) {
throw new RuntimeException("IO.next: Caught IOException.");
}
}
public int nextInt() {
try {
int ret = 0;
eatDelimiters();
boolean positive = true;
if(buf[bufi] == '-') {
++bufi;
if(!pumpBuf()) throw new RuntimeException("IO.nextInt: Invalid int.");
positive = false;
}
boolean first = true;
while(true) {
if(!pumpBuf()) break;
if(isDelimiter(buf[bufi])) {
if(first) throw new RuntimeException("IO.nextInt: Invalid int.");
break;
}
first = false;
if(buf[bufi] >= '0' && buf[bufi] <= '9') {
if(ret < -214748364) throw new RuntimeException("IO.nextInt: Invalid int.");
ret *= 10;
ret -= (int)(buf[bufi] - '0');
if(ret > 0) throw new RuntimeException("IO.nextInt: Invalid int.");
} else {
throw new RuntimeException("IO.nextInt: Invalid int.");
}
++bufi;
}
if(positive) {
if(ret == -2147483648) throw new RuntimeException("IO.nextInt: Invalid int.");
ret = -ret;
}
return ret;
} catch(IOException e) {
throw new RuntimeException("IO.nextInt: Caught IOException.");
}
}
public long nextLong() {
try {
long ret = 0;
eatDelimiters();
boolean positive = true;
if(buf[bufi] == '-') {
++bufi;
if(!pumpBuf()) throw new RuntimeException("IO.nextLong: Invalid long.");
positive = false;
}
boolean first = true;
while(true) {
if(!pumpBuf()) break;
if(isDelimiter(buf[bufi])) {
if(first) throw new RuntimeException("IO.nextLong: Invalid long.");
break;
}
first = false;
if(buf[bufi] >= '0' && buf[bufi] <= '9') {
if(ret < -922337203685477580L) throw new RuntimeException("IO.nextLong: Invalid long.");
ret *= 10;
ret -= (long)(buf[bufi] - '0');
if(ret > 0) throw new RuntimeException("IO.nextLong: Invalid long.");
} else {
throw new RuntimeException("IO.nextLong: Invalid long.");
}
++bufi;
}
if(positive) {
if(ret == -9223372036854775808L) throw new RuntimeException("IO.nextLong: Invalid long.");
ret = -ret;
}
return ret;
} catch(IOException e) {
throw new RuntimeException("IO.nextLong: Caught IOException.");
}
}
public double nextDouble() {
return Double.parseDouble(next());
}
}
Test details
Test 1
Group: 1
Verdict: ACCEPTED
| input |
|---|
| 542 |
| correct output |
|---|
| 11942 |
| user output |
|---|
| 11942 |
Test 2
Group: 1
Verdict: ACCEPTED
| input |
|---|
| 929 |
| correct output |
|---|
| 29913 |
| user output |
|---|
| 29913 |
Test 3
Group: 1
Verdict: ACCEPTED
| input |
|---|
| 801 |
| correct output |
|---|
| 23460 |
| user output |
|---|
| 23460 |
Test 4
Group: 1
Verdict: ACCEPTED
| input |
|---|
| 935 |
| correct output |
|---|
| 30006 |
| user output |
|---|
| 30006 |
Test 5
Group: 1
Verdict: ACCEPTED
| input |
|---|
| 998 |
| correct output |
|---|
| 33766 |
| user output |
|---|
| 33766 |
Test 6
Group: 1
Verdict: ACCEPTED
| input |
|---|
| 942 |
| correct output |
|---|
| 30490 |
| user output |
|---|
| 30490 |
Test 7
Group: 1
Verdict: ACCEPTED
| input |
|---|
| 736 |
| correct output |
|---|
| 20285 |
| user output |
|---|
| 20285 |
Test 8
Group: 1
Verdict: ACCEPTED
| input |
|---|
| 930 |
| correct output |
|---|
| 29975 |
| user output |
|---|
| 29975 |
Test 9
Group: 2
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| 95404 |
| correct output |
|---|
| 90172356 |
| user output |
|---|
| (empty) |
Test 10
Group: 2
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| 98060 |
| correct output |
|---|
| 94687572 |
| user output |
|---|
| (empty) |
Test 11
Group: 2
Verdict: ACCEPTED
| input |
|---|
| 69495 |
| correct output |
|---|
| 52308390 |
| user output |
|---|
| 52308390 |
Test 12
Group: 2
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| 92197 |
| correct output |
|---|
| 85306979 |
| user output |
|---|
| (empty) |
Test 13
Group: 2
Verdict: ACCEPTED
| input |
|---|
| 53418 |
| correct output |
|---|
| 32957881 |
| user output |
|---|
| 32957881 |
Test 14
Group: 2
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| 97377 |
| correct output |
|---|
| 93859995 |
| user output |
|---|
| (empty) |
Test 15
Group: 2
Verdict: ACCEPTED
| input |
|---|
| 68065 |
| correct output |
|---|
| 50223001 |
| user output |
|---|
| 50223001 |
Test 16
Group: 2
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| 95463 |
| correct output |
|---|
| 90201672 |
| user output |
|---|
| (empty) |
Test 17
Group: 3
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| 74323456 |
| correct output |
|---|
| 8975396101231 |
| user output |
|---|
| (empty) |
Test 18
Group: 3
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| 92132055 |
| correct output |
|---|
| 13006378374515 |
| user output |
|---|
| (empty) |
Test 19
Group: 3
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| 55135704 |
| correct output |
|---|
| 5354656932672 |
| user output |
|---|
| (empty) |
Test 20
Group: 3
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| 98613338 |
| correct output |
|---|
| 14631125716007 |
| user output |
|---|
| (empty) |
Test 21
Group: 3
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| 75558302 |
| correct output |
|---|
| 9238208186405 |
| user output |
|---|
| (empty) |
Test 22
Group: 3
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| 94968034 |
| correct output |
|---|
| 13713914468591 |
| user output |
|---|
| (empty) |
Test 23
Group: 3
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| 52163652 |
| correct output |
|---|
| 4858985762438 |
| user output |
|---|
| (empty) |
Test 24
Group: 3
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| 94830583 |
| correct output |
|---|
| 13674294022172 |
| user output |
|---|
| (empty) |
