Task: | Sum of ones |
Sender: | aalto2024e_007 |
Submission time: | 2024-09-30 16:48:39 +0300 |
Language: | Java |
Status: | READY |
Result: | RUNTIME ERROR |
test | verdict | time | |
---|---|---|---|
#1 | ACCEPTED | 0.13 s | details |
#2 | ACCEPTED | 0.13 s | details |
#3 | ACCEPTED | 0.13 s | details |
#4 | ACCEPTED | 0.13 s | details |
#5 | ACCEPTED | 0.13 s | details |
#6 | ACCEPTED | 0.13 s | details |
#7 | ACCEPTED | 0.13 s | details |
#8 | ACCEPTED | 0.13 s | details |
#9 | ACCEPTED | 0.13 s | details |
#10 | ACCEPTED | 0.13 s | details |
#11 | RUNTIME ERROR | 0.13 s | details |
#12 | RUNTIME ERROR | 0.13 s | details |
#13 | RUNTIME ERROR | 0.13 s | details |
#14 | RUNTIME ERROR | 0.14 s | details |
#15 | RUNTIME ERROR | 0.14 s | details |
#16 | RUNTIME ERROR | 0.13 s | details |
#17 | RUNTIME ERROR | 0.14 s | details |
#18 | RUNTIME ERROR | 0.13 s | details |
#19 | RUNTIME ERROR | 0.13 s | details |
#20 | RUNTIME ERROR | 0.14 s | details |
#21 | RUNTIME ERROR | 0.13 s | details |
Code
//package week5.monday; import java.util.Scanner; public class BitCoun { public static void main(String[] args) { // TODO Auto-generated method stub Scanner sc = new Scanner(System.in); int number = Integer.parseInt(sc.nextLine()); int oneBit = 0; for(int i =1; i<=number; i++) { String binary = Integer.toBinaryString(i); for(int bitChar =0 ; bitChar < binary.length(); bitChar++) { if(binary.charAt(bitChar) == '1') oneBit++; } } System.out.println(oneBit); } }
Test details
Test 1
Verdict: ACCEPTED
input |
---|
1 |
correct output |
---|
1 |
user output |
---|
1 |
Test 2
Verdict: ACCEPTED
input |
---|
2 |
correct output |
---|
2 |
user output |
---|
2 |
Test 3
Verdict: ACCEPTED
input |
---|
3 |
correct output |
---|
4 |
user output |
---|
4 |
Test 4
Verdict: ACCEPTED
input |
---|
4 |
correct output |
---|
5 |
user output |
---|
5 |
Test 5
Verdict: ACCEPTED
input |
---|
5 |
correct output |
---|
7 |
user output |
---|
7 |
Test 6
Verdict: ACCEPTED
input |
---|
6 |
correct output |
---|
9 |
user output |
---|
9 |
Test 7
Verdict: ACCEPTED
input |
---|
7 |
correct output |
---|
12 |
user output |
---|
12 |
Test 8
Verdict: ACCEPTED
input |
---|
8 |
correct output |
---|
13 |
user output |
---|
13 |
Test 9
Verdict: ACCEPTED
input |
---|
9 |
correct output |
---|
15 |
user output |
---|
15 |
Test 10
Verdict: ACCEPTED
input |
---|
10 |
correct output |
---|
17 |
user output |
---|
17 |
Test 11
Verdict: RUNTIME ERROR
input |
---|
303021765044187 |
correct output |
---|
7250167017244884 |
user output |
---|
(empty) |
Error:
Exception in thread "main" java.lang.NumberFormatException: For input string: "30302176504...
Test 12
Verdict: RUNTIME ERROR
input |
---|
390977392667778 |
correct output |
---|
9400236781929604 |
user output |
---|
(empty) |
Error:
Exception in thread "main" java.lang.NumberFormatException: For input string: "39097739266...
Test 13
Verdict: RUNTIME ERROR
input |
---|
670904313808571 |
correct output |
---|
16399391652009372 |
user output |
---|
(empty) |
Error:
Exception in thread "main" java.lang.NumberFormatException: For input string: "67090431380...
Test 14
Verdict: RUNTIME ERROR
input |
---|
704275111916256 |
correct output |
---|
17252936460583174 |
user output |
---|
(empty) |
Error:
Exception in thread "main" java.lang.NumberFormatException: For input string: "70427511191...
Test 15
Verdict: RUNTIME ERROR
input |
---|
799807335176164 |
correct output |
---|
19646099779305746 |
user output |
---|
(empty) |
Error:
Exception in thread "main" java.lang.NumberFormatException: For input string: "79980733517...
Test 16
Verdict: RUNTIME ERROR
input |
---|
852012055430877 |
correct output |
---|
21005540865890493 |
user output |
---|
(empty) |
Error:
Exception in thread "main" java.lang.NumberFormatException: For input string: "85201205543...
Test 17
Verdict: RUNTIME ERROR
input |
---|
901305628563213 |
correct output |
---|
22232965316761961 |
user output |
---|
(empty) |
Error:
Exception in thread "main" java.lang.NumberFormatException: For input string: "90130562856...
Test 18
Verdict: RUNTIME ERROR
input |
---|
917427461591619 |
correct output |
---|
22650112032503064 |
user output |
---|
(empty) |
Error:
Exception in thread "main" java.lang.NumberFormatException: For input string: "91742746159...
Test 19
Verdict: RUNTIME ERROR
input |
---|
981787468874797 |
correct output |
---|
24322274256024775 |
user output |
---|
(empty) |
Error:
Exception in thread "main" java.lang.NumberFormatException: For input string: "98178746887...
Test 20
Verdict: RUNTIME ERROR
input |
---|
1000000000000000 |
correct output |
---|
24784747400675348 |
user output |
---|
(empty) |
Error:
Exception in thread "main" java.lang.NumberFormatException: For input string: "10000000000...
Test 21
Verdict: RUNTIME ERROR
input |
---|
989898989898989 |
correct output |
---|
24531282955144033 |
user output |
---|
(empty) |
Error:
Exception in thread "main" java.lang.NumberFormatException: For input string: "98989898989...