| Task: | Bittijono |
| Sender: | 10GOTO10 |
| Submission time: | 2017-10-11 02:36:10 +0300 |
| Language: | Java |
| Status: | READY |
| Result: | 0 |
| group | verdict | score |
|---|---|---|
| #1 | RUNTIME ERROR | 0 |
| #2 | RUNTIME ERROR | 0 |
| #3 | RUNTIME ERROR | 0 |
| #4 | RUNTIME ERROR | 0 |
| test | verdict | time | group | |
|---|---|---|---|---|
| #1 | RUNTIME ERROR | 0.20 s | 1 | details |
| #2 | RUNTIME ERROR | 0.14 s | 1 | details |
| #3 | RUNTIME ERROR | 0.14 s | 1 | details |
| #4 | RUNTIME ERROR | 0.15 s | 1 | details |
| #5 | RUNTIME ERROR | 0.15 s | 1 | details |
| #6 | RUNTIME ERROR | 0.13 s | 1 | details |
| #7 | RUNTIME ERROR | 0.14 s | 1 | details |
| #8 | RUNTIME ERROR | 0.16 s | 1 | details |
| #9 | RUNTIME ERROR | 0.14 s | 1 | details |
| #10 | RUNTIME ERROR | 0.14 s | 1 | details |
| #11 | RUNTIME ERROR | 0.13 s | 2 | details |
| #12 | RUNTIME ERROR | 0.17 s | 2 | details |
| #13 | RUNTIME ERROR | 0.13 s | 2 | details |
| #14 | RUNTIME ERROR | 0.13 s | 2 | details |
| #15 | RUNTIME ERROR | 0.12 s | 2 | details |
| #16 | RUNTIME ERROR | 0.14 s | 2 | details |
| #17 | RUNTIME ERROR | 0.15 s | 2 | details |
| #18 | RUNTIME ERROR | 0.13 s | 2 | details |
| #19 | RUNTIME ERROR | 0.12 s | 2 | details |
| #20 | RUNTIME ERROR | 0.13 s | 2 | details |
| #21 | RUNTIME ERROR | 0.15 s | 3 | details |
| #22 | RUNTIME ERROR | 0.17 s | 3 | details |
| #23 | RUNTIME ERROR | 0.15 s | 3 | details |
| #24 | RUNTIME ERROR | 0.16 s | 3 | details |
| #25 | RUNTIME ERROR | 0.13 s | 3 | details |
| #26 | RUNTIME ERROR | 0.15 s | 3 | details |
| #27 | RUNTIME ERROR | 0.13 s | 3 | details |
| #28 | RUNTIME ERROR | 0.15 s | 3 | details |
| #29 | RUNTIME ERROR | 0.12 s | 3 | details |
| #30 | RUNTIME ERROR | 0.11 s | 3 | details |
| #31 | RUNTIME ERROR | 0.14 s | 4 | details |
| #32 | RUNTIME ERROR | 0.12 s | 4 | details |
| #33 | RUNTIME ERROR | 0.13 s | 4 | details |
| #34 | RUNTIME ERROR | 0.12 s | 4 | details |
| #35 | RUNTIME ERROR | 0.13 s | 4 | details |
| #36 | RUNTIME ERROR | 0.18 s | 4 | details |
| #37 | RUNTIME ERROR | 0.12 s | 4 | details |
| #38 | RUNTIME ERROR | 0.13 s | 4 | details |
| #39 | RUNTIME ERROR | 0.13 s | 4 | details |
| #40 | RUNTIME ERROR | 0.12 s | 4 | details |
Code
import java.util.*;
class bittijono
{
public static int in;
public static int counter = 0;
public static String binary = "0";
public static String binary2 = "0";
public static int binary1Len = 1;
public static int binary2Len = 1;
public static String zeros = "0000000000000000000000000000000000000000000000000000";
public static void advanceBinary() {
if(!binary.contains("0")) {
binary1Len++;
binary = "0";
}
int binary1Int = Integer.parseInt(binary, 2) + 1;
binary = zeros.substring(0, binary1Len-Integer.toBinaryString(binary1Int).length()) + Integer.toBinaryString(binary1Int);
}
public static void advanceBinary2() {
if(!binary2.contains("0")) {
binary2Len++;
binary2 = "0";
}
int binary2Int = Integer.parseInt(binary2, 2) + 1;
binary2 = zeros.substring(0, binary2Len-Integer.toBinaryString(binary2Int).length()) + Integer.toBinaryString(binary2Int);
}
public static boolean contains(String s1, String s2) {
int count = 0;
for (int i=0; i<binary1Len && count<binary2Len; i++) {
if (s1.charAt(count) == s2.charAt(i)) count++;
}
return (count == binary2Len);
}
public static int substrings() {
while(binary1Len >= binary2Len) {
if(contains(binary2, binary)) counter++;
advanceBinary2();
}
binary2 = "0";
binary2Len = 1;
return counter;
}
public static void main (String[] args) throws java.lang.Exception
{
Scanner scanner = new Scanner(System.in);
in = scanner.nextInt();
scanner.close();
while(true) {
if(substrings() == in) {
System.out.println(binary);
break;
}
counter = 0;
advanceBinary();
}
}
}Test details
Test 1
Group: 1
Verdict: RUNTIME ERROR
| input |
|---|
| 1 |
| correct output |
|---|
| 1 |
| user output |
|---|
| (empty) |
Error:
Error: Could not find or load main class bittijono10
Test 2
Group: 1
Verdict: RUNTIME ERROR
| input |
|---|
| 2 |
| correct output |
|---|
| 11 |
| user output |
|---|
| (empty) |
Error:
Error: Could not find or load main class bittijono10
Test 3
Group: 1
Verdict: RUNTIME ERROR
| input |
|---|
| 3 |
| correct output |
|---|
| 10 |
| user output |
|---|
| (empty) |
Error:
Error: Could not find or load main class bittijono10
Test 4
Group: 1
Verdict: RUNTIME ERROR
| input |
|---|
| 4 |
| correct output |
|---|
| 1111 |
| user output |
|---|
| (empty) |
Error:
Error: Could not find or load main class bittijono10
Test 5
Group: 1
Verdict: RUNTIME ERROR
| input |
|---|
| 5 |
| correct output |
|---|
| 110 |
| user output |
|---|
| (empty) |
Error:
Error: Could not find or load main class bittijono10
Test 6
Group: 1
Verdict: RUNTIME ERROR
| input |
|---|
| 6 |
| correct output |
|---|
| 101 |
| user output |
|---|
| (empty) |
Error:
Error: Could not find or load main class bittijono10
Test 7
Group: 1
Verdict: RUNTIME ERROR
| input |
|---|
| 7 |
| correct output |
|---|
| 1110 |
| user output |
|---|
| (empty) |
Error:
Error: Could not find or load main class bittijono10
Test 8
Group: 1
Verdict: RUNTIME ERROR
| input |
|---|
| 8 |
| correct output |
|---|
| 1100 |
| user output |
|---|
| (empty) |
Error:
Error: Could not find or load main class bittijono10
Test 9
Group: 1
Verdict: RUNTIME ERROR
| input |
|---|
| 9 |
| correct output |
|---|
| 1101 |
| user output |
|---|
| (empty) |
Error:
Error: Could not find or load main class bittijono10
Test 10
Group: 1
Verdict: RUNTIME ERROR
| input |
|---|
| 10 |
| correct output |
|---|
| 1001 |
| user output |
|---|
| (empty) |
Error:
Error: Could not find or load main class bittijono10
Test 11
Group: 2
Verdict: RUNTIME ERROR
| input |
|---|
| 38 |
| correct output |
|---|
| 1101011 |
| user output |
|---|
| (empty) |
Error:
Error: Could not find or load main class bittijono10
Test 12
Group: 2
Verdict: RUNTIME ERROR
| input |
|---|
| 13 |
| correct output |
|---|
| 11011 |
| user output |
|---|
| (empty) |
Error:
Error: Could not find or load main class bittijono10
Test 13
Group: 2
Verdict: RUNTIME ERROR
| input |
|---|
| 90 |
| correct output |
|---|
| 111001010 |
| user output |
|---|
| (empty) |
Error:
Error: Could not find or load main class bittijono10
Test 14
Group: 2
Verdict: RUNTIME ERROR
| input |
|---|
| 25 |
| correct output |
|---|
| 110010 |
| user output |
|---|
| (empty) |
Error:
Error: Could not find or load main class bittijono10
Test 15
Group: 2
Verdict: RUNTIME ERROR
| input |
|---|
| 82 |
| correct output |
|---|
| 111001101 |
| user output |
|---|
| (empty) |
Error:
Error: Could not find or load main class bittijono10
Test 16
Group: 2
Verdict: RUNTIME ERROR
| input |
|---|
| 94 |
| correct output |
|---|
| 1100011110 |
| user output |
|---|
| (empty) |
Error:
Error: Could not find or load main class bittijono10
Test 17
Group: 2
Verdict: RUNTIME ERROR
| input |
|---|
| 100 |
| correct output |
|---|
| 1111001001 |
| user output |
|---|
| (empty) |
Error:
Error: Could not find or load main class bittijono10
Test 18
Group: 2
Verdict: RUNTIME ERROR
| input |
|---|
| 99 |
| correct output |
|---|
| 110010010 |
| user output |
|---|
| (empty) |
Error:
Error: Could not find or load main class bittijono10
Test 19
Group: 2
Verdict: RUNTIME ERROR
| input |
|---|
| 98 |
| correct output |
|---|
| 110110010 |
| user output |
|---|
| (empty) |
Error:
Error: Could not find or load main class bittijono10
Test 20
Group: 2
Verdict: RUNTIME ERROR
| input |
|---|
| 92 |
| correct output |
|---|
| 100110001 |
| user output |
|---|
| (empty) |
Error:
Error: Could not find or load main class bittijono10
Test 21
Group: 3
Verdict: RUNTIME ERROR
| input |
|---|
| 1666 |
| correct output |
|---|
| 101101100100101 |
| user output |
|---|
| (empty) |
Error:
Error: Could not find or load main class bittijono10
Test 22
Group: 3
Verdict: RUNTIME ERROR
| input |
|---|
| 897 |
| correct output |
|---|
| 11101001101010 |
| user output |
|---|
| (empty) |
Error:
Error: Could not find or load main class bittijono10
Test 23
Group: 3
Verdict: RUNTIME ERROR
| input |
|---|
| 4466 |
| correct output |
|---|
| 111101010110100101 |
| user output |
|---|
| (empty) |
Error:
Error: Could not find or load main class bittijono10
Test 24
Group: 3
Verdict: RUNTIME ERROR
| input |
|---|
| 4240 |
| correct output |
|---|
| 11011001011010101 |
| user output |
|---|
| (empty) |
Error:
Error: Could not find or load main class bittijono10
Test 25
Group: 3
Verdict: RUNTIME ERROR
| input |
|---|
| 3089 |
| correct output |
|---|
| 1011001010100101 |
| user output |
|---|
| (empty) |
Error:
Error: Could not find or load main class bittijono10
Test 26
Group: 3
Verdict: RUNTIME ERROR
| input |
|---|
| 4697 |
| correct output |
|---|
| 11010101101010110 |
| user output |
|---|
| (empty) |
Error:
Error: Could not find or load main class bittijono10
Test 27
Group: 3
Verdict: RUNTIME ERROR
| input |
|---|
| 4608 |
| correct output |
|---|
| 11010110101001010 |
| user output |
|---|
| (empty) |
Error:
Error: Could not find or load main class bittijono10
Test 28
Group: 3
Verdict: RUNTIME ERROR
| input |
|---|
| 4625 |
| correct output |
|---|
| 111011001100101001 |
| user output |
|---|
| (empty) |
Error:
Error: Could not find or load main class bittijono10
Test 29
Group: 3
Verdict: RUNTIME ERROR
| input |
|---|
| 4611 |
| correct output |
|---|
| 11010101010101100 |
| user output |
|---|
| (empty) |
Error:
Error: Could not find or load main class bittijono10
Test 30
Group: 3
Verdict: RUNTIME ERROR
| input |
|---|
| 4917 |
| correct output |
|---|
| 10110100101010110 |
| user output |
|---|
| (empty) |
Error:
Error: Could not find or load main class bittijono10
Test 31
Group: 4
Verdict: RUNTIME ERROR
| input |
|---|
| 178555 |
| correct output |
|---|
| 1011010110110101010110110 |
| user output |
|---|
| (empty) |
Error:
Error: Could not find or load main class bittijono10
Test 32
Group: 4
Verdict: RUNTIME ERROR
| input |
|---|
| 864856 |
| correct output |
|---|
| 10111010110110100100101010010 |
| user output |
|---|
| (empty) |
Error:
Error: Could not find or load main class bittijono10
Test 33
Group: 4
Verdict: RUNTIME ERROR
| input |
|---|
| 112146 |
| correct output |
|---|
| 1101110101011001100100110 |
| user output |
|---|
| (empty) |
Error:
Error: Could not find or load main class bittijono10
Test 34
Group: 4
Verdict: RUNTIME ERROR
| input |
|---|
| 741124 |
| correct output |
|---|
| 1011010011010101100101011010 |
| user output |
|---|
| (empty) |
Error:
Error: Could not find or load main class bittijono10
Test 35
Group: 4
Verdict: RUNTIME ERROR
| input |
|---|
| 511902 |
| correct output |
|---|
| 1011010100011010100101001110 |
| user output |
|---|
| (empty) |
Error:
Error: Could not find or load main class bittijono10
Test 36
Group: 4
Verdict: RUNTIME ERROR
| input |
|---|
| 920019 |
| correct output |
|---|
| 11100100101101010101001101010 |
| user output |
|---|
| (empty) |
Error:
Error: Could not find or load main class bittijono10
Test 37
Group: 4
Verdict: RUNTIME ERROR
| input |
|---|
| 933943 |
| correct output |
|---|
| 10101011010100100110100111001 |
| user output |
|---|
| (empty) |
Error:
Error: Could not find or load main class bittijono10
Test 38
Group: 4
Verdict: RUNTIME ERROR
| input |
|---|
| 973410 |
| correct output |
|---|
| 1011010101011010101010101001 |
| user output |
|---|
| (empty) |
Error:
Error: Could not find or load main class bittijono10
Test 39
Group: 4
Verdict: RUNTIME ERROR
| input |
|---|
| 954943 |
| correct output |
|---|
| 10110110010011010100100110101 |
| user output |
|---|
| (empty) |
Error:
Error: Could not find or load main class bittijono10
Test 40
Group: 4
Verdict: RUNTIME ERROR
| input |
|---|
| 911674 |
| correct output |
|---|
| 1010110010110101010101010110 |
| user output |
|---|
| (empty) |
Error:
Error: Could not find or load main class bittijono10
