CSES - Aalto Competitive Programming 2024 - wk5 - Mon - Results
Submission details
Task:Sum of ones
Sender:aalto2024e_007
Submission time:2024-09-30 16:45:28 +0300
Language:Java
Status:READY
Result:
Test results
testverdicttime
#10.10 sdetails
#20.10 sdetails
#30.10 sdetails
#40.11 sdetails
#50.11 sdetails
#60.10 sdetails
#70.10 sdetails
#80.10 sdetails
#90.10 sdetails
#100.10 sdetails
#110.10 sdetails
#120.10 sdetails
#130.10 sdetails
#140.10 sdetails
#150.10 sdetails
#160.10 sdetails
#170.10 sdetails
#180.10 sdetails
#190.11 sdetails
#200.10 sdetails
#210.10 sdetails

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(binary);
		}
		
		System.out.println(oneBit);
		
	}
}

Test details

Test 1

Verdict:

input
1

correct output
1

user output
(empty)

Error:
Error: Could not find or load main class BitCoun
Caused by: java.lang.ClassNotFoundExcepti...

Test 2

Verdict:

input
2

correct output
2

user output
(empty)

Error:
Error: Could not find or load main class BitCoun
Caused by: java.lang.ClassNotFoundExcepti...

Test 3

Verdict:

input
3

correct output
4

user output
(empty)

Error:
Error: Could not find or load main class BitCoun
Caused by: java.lang.ClassNotFoundExcepti...

Test 4

Verdict:

input
4

correct output
5

user output
(empty)

Error:
Error: Could not find or load main class BitCoun
Caused by: java.lang.ClassNotFoundExcepti...

Test 5

Verdict:

input
5

correct output
7

user output
(empty)

Error:
Error: Could not find or load main class BitCoun
Caused by: java.lang.ClassNotFoundExcepti...

Test 6

Verdict:

input
6

correct output
9

user output
(empty)

Error:
Error: Could not find or load main class BitCoun
Caused by: java.lang.ClassNotFoundExcepti...

Test 7

Verdict:

input
7

correct output
12

user output
(empty)

Error:
Error: Could not find or load main class BitCoun
Caused by: java.lang.ClassNotFoundExcepti...

Test 8

Verdict:

input
8

correct output
13

user output
(empty)

Error:
Error: Could not find or load main class BitCoun
Caused by: java.lang.ClassNotFoundExcepti...

Test 9

Verdict:

input
9

correct output
15

user output
(empty)

Error:
Error: Could not find or load main class BitCoun
Caused by: java.lang.ClassNotFoundExcepti...

Test 10

Verdict:

input
10

correct output
17

user output
(empty)

Error:
Error: Could not find or load main class BitCoun
Caused by: java.lang.ClassNotFoundExcepti...

Test 11

Verdict:

input
303021765044187

correct output
7250167017244884

user output
(empty)

Error:
Error: Could not find or load main class BitCoun
Caused by: java.lang.ClassNotFoundExcepti...

Test 12

Verdict:

input
390977392667778

correct output
9400236781929604

user output
(empty)

Error:
Error: Could not find or load main class BitCoun
Caused by: java.lang.ClassNotFoundExcepti...

Test 13

Verdict:

input
670904313808571

correct output
16399391652009372

user output
(empty)

Error:
Error: Could not find or load main class BitCoun
Caused by: java.lang.ClassNotFoundExcepti...

Test 14

Verdict:

input
704275111916256

correct output
17252936460583174

user output
(empty)

Error:
Error: Could not find or load main class BitCoun
Caused by: java.lang.ClassNotFoundExcepti...

Test 15

Verdict:

input
799807335176164

correct output
19646099779305746

user output
(empty)

Error:
Error: Could not find or load main class BitCoun
Caused by: java.lang.ClassNotFoundExcepti...

Test 16

Verdict:

input
852012055430877

correct output
21005540865890493

user output
(empty)

Error:
Error: Could not find or load main class BitCoun
Caused by: java.lang.ClassNotFoundExcepti...

Test 17

Verdict:

input
901305628563213

correct output
22232965316761961

user output
(empty)

Error:
Error: Could not find or load main class BitCoun
Caused by: java.lang.ClassNotFoundExcepti...

Test 18

Verdict:

input
917427461591619

correct output
22650112032503064

user output
(empty)

Error:
Error: Could not find or load main class BitCoun
Caused by: java.lang.ClassNotFoundExcepti...

Test 19

Verdict:

input
981787468874797

correct output
24322274256024775

user output
(empty)

Error:
Error: Could not find or load main class BitCoun
Caused by: java.lang.ClassNotFoundExcepti...

Test 20

Verdict:

input
1000000000000000

correct output
24784747400675348

user output
(empty)

Error:
Error: Could not find or load main class BitCoun
Caused by: java.lang.ClassNotFoundExcepti...

Test 21

Verdict:

input
989898989898989

correct output
24531282955144033

user output
(empty)

Error:
Error: Could not find or load main class BitCoun
Caused by: java.lang.ClassNotFoundExcepti...