CSES - Datatähti 2019 loppu - Results
Submission details
Task:Binääripuu
Sender:Kerkko Konola
Submission time:2019-01-17 15:49:26 +0200
Language:Python3
Status:READY
Result:0
Feedback
groupverdictscore
#10
#20
#30
Test results
testverdicttimegroup
#10.04 s1details
#20.05 s1details
#30.04 s1details
#40.05 s1details
#50.04 s1details
#60.05 s1details
#70.05 s1details
#80.04 s1details
#90.05 s1details
#100.05 s1details
#110.04 s1details
#120.04 s1details
#130.05 s1details
#140.05 s1details
#150.04 s1details
#160.05 s1details
#170.05 s1details
#180.05 s1details
#190.05 s1details
#200.05 s1details
#210.04 s1details
#220.06 s1details
#230.04 s1details
#240.05 s1details
#250.04 s1details
#260.05 s1details
#270.05 s1details
#280.05 s1details
#290.04 s1details
#300.05 s1details
#310.04 s1details
#320.04 s1details
#330.04 s1details
#340.05 s1details
#350.04 s1details
#360.04 s2details
#370.04 s2details
#380.04 s2details
#390.04 s2details
#400.04 s2details
#410.04 s2details
#420.05 s2details
#430.05 s2details
#440.04 s2details
#450.04 s2details
#460.05 s3details
#470.05 s3details
#480.05 s3details
#490.04 s3details
#500.04 s3details
#510.05 s3details
#520.05 s3details
#530.05 s3details
#540.04 s3details
#550.05 s3details
#560.04 s3details
#570.04 s3details
#580.04 s3details
#590.04 s3details
#600.05 s3details
#610.05 s3details
#620.04 s3details
#630.06 s3details
#640.04 s3details
#650.04 s3details
#660.04 s3details
#670.05 s3details
#680.05 s3details
#690.05 s3details
#700.04 s3details
#710.05 s3details
#720.05 s3details
#730.05 s3details
#740.04 s3details
#750.05 s3details
#760.05 s3details
#770.04 s3details

Code

import math

ui = int(input())

ans = (2**ui) % ((10**9)+7)
print(ans)
    

Test details

Test 1

Group: 1

Verdict:

input
4 3
10
5
13

correct output
12

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 3, in <module>
    ui = int(input())
ValueError: invalid literal for int() with base 10: '4 3\r'

Test 2

Group: 1

Verdict:

input
2 0

correct output
2

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 3, in <module>
    ui = int(input())
ValueError: invalid literal for int() with base 10: '2 0\r'

Test 3

Group: 1

Verdict:

input
2 1
2

correct output
0

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 3, in <module>
    ui = int(input())
ValueError: invalid literal for int() with base 10: '2 1\r'

Test 4

Group: 1

Verdict:

input
2 1
3

correct output
0

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 3, in <module>
    ui = int(input())
ValueError: invalid literal for int() with base 10: '2 1\r'

Test 5

Group: 1

Verdict:

input
2 2
2
3

correct output
0

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 3, in <module>
    ui = int(input())
ValueError: invalid literal for int() with base 10: '2 2\r'

Test 6

Group: 1

Verdict:

input
6 0

correct output
512

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 3, in <module>
    ui = int(input())
ValueError: invalid literal for int() with base 10: '6 0\r'

Test 7

Group: 1

Verdict:

input
6 1
29

correct output
448

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 3, in <module>
    ui = int(input())
ValueError: invalid literal for int() with base 10: '6 1\r'

Test 8

Group: 1

Verdict:

input
6 1
63

correct output
480

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 3, in <module>
    ui = int(input())
ValueError: invalid literal for int() with base 10: '6 1\r'

Test 9

Group: 1

Verdict:

input
6 10
50
63
56
5
...

correct output
132

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 3, in <module>
    ui = int(input())
ValueError: invalid literal for int() with base 10: '6 10\r'

Test 10

Group: 1

Verdict:

input
6 10
25
57
62
42
...

correct output
162

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 3, in <module>
    ui = int(input())
ValueError: invalid literal for int() with base 10: '6 10\r'

Test 11

Group: 1

Verdict:

input
6 10
14
26
34
42
...

correct output
126

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 3, in <module>
    ui = int(input())
ValueError: invalid literal for int() with base 10: '6 10\r'

Test 12

Group: 1

Verdict:

input
6 10
21
60
23
59
...

correct output
128

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 3, in <module>
    ui = int(input())
ValueError: invalid literal for int() with base 10: '6 10\r'

Test 13

Group: 1

Verdict:

input
6 10
8
30
32
16
...

correct output
0

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 3, in <module>
    ui = int(input())
ValueError: invalid literal for int() with base 10: '6 10\r'

Test 14

Group: 1

Verdict:

input
6 20
46
39
55
24
...

correct output
48

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 3, in <module>
    ui = int(input())
ValueError: invalid literal for int() with base 10: '6 20\r'

Test 15

Group: 1

Verdict:

input
6 25
36
23
27
33
...

correct output
4

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 3, in <module>
    ui = int(input())
ValueError: invalid literal for int() with base 10: '6 25\r'

Test 16

Group: 1

Verdict:

input
6 62
42
11
4
61
...

correct output
0

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 3, in <module>
    ui = int(input())
ValueError: invalid literal for int() with base 10: '6 62\r'

Test 17

Group: 1

Verdict:

input
6 32
62
38
57
35
...

correct output
0

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 3, in <module>
    ui = int(input())
ValueError: invalid literal for int() with base 10: '6 32\r'

Test 18

Group: 1

Verdict:

input
6 21
38
51
47
35
...

correct output
60

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 3, in <module>
    ui = int(input())
ValueError: invalid literal for int() with base 10: '6 21\r'

Test 19

Group: 1

Verdict:

input
6 31
59
15
3
26
...

correct output
0

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 3, in <module>
    ui = int(input())
ValueError: invalid literal for int() with base 10: '6 31\r'

Test 20

Group: 1

Verdict:

input
6 14
13
53
55
26
...

correct output
256

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 3, in <module>
    ui = int(input())
ValueError: invalid literal for int() with base 10: '6 14\r'

Test 21

Group: 1

Verdict:

input
5 10
5
17
21
7
...

correct output
6

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 3, in <module>
    ui = int(input())
ValueError: invalid literal for int() with base 10: '5 10\r'

Test 22

Group: 1

Verdict:

input
6 5
38
18
31
44
...

correct output
312

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 3, in <module>
    ui = int(input())
ValueError: invalid literal for int() with base 10: '6 5\r'

Test 23

Group: 1

Verdict:

input
3 0

correct output
8

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 3, in <module>
    ui = int(input())
ValueError: invalid literal for int() with base 10: '3 0\r'

Test 24

Group: 1

Verdict:

input
3 1
2

correct output
0

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 3, in <module>
    ui = int(input())
ValueError: invalid literal for int() with base 10: '3 1\r'

Test 25

Group: 1

Verdict:

input
3 1
3

correct output
0

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 3, in <module>
    ui = int(input())
ValueError: invalid literal for int() with base 10: '3 1\r'

Test 26

Group: 1

Verdict:

input
3 2
4
6

correct output
2

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 3, in <module>
    ui = int(input())
ValueError: invalid literal for int() with base 10: '3 2\r'

Test 27

Group: 1

Verdict:

input
3 2
4
7

correct output
2

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 3, in <module>
    ui = int(input())
ValueError: invalid literal for int() with base 10: '3 2\r'

Test 28

Group: 1

Verdict:

input
3 2
5
6

correct output
2

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 3, in <module>
    ui = int(input())
ValueError: invalid literal for int() with base 10: '3 2\r'

Test 29

Group: 1

Verdict:

input
3 2
5
7

correct output
2

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 3, in <module>
    ui = int(input())
ValueError: invalid literal for int() with base 10: '3 2\r'

Test 30

Group: 1

Verdict:

input
3 2
3
6

correct output
0

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 3, in <module>
    ui = int(input())
ValueError: invalid literal for int() with base 10: '3 2\r'

Test 31

Group: 1

Verdict:

input
3 3
4
5
6

correct output
0

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 3, in <module>
    ui = int(input())
ValueError: invalid literal for int() with base 10: '3 3\r'

Test 32

Group: 1

Verdict:

input
3 3
4
6
7

correct output
0

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 3, in <module>
    ui = int(input())
ValueError: invalid literal for int() with base 10: '3 3\r'

Test 33

Group: 1

Verdict:

input
3 4
4
5
6
7

correct output
0

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 3, in <module>
    ui = int(input())
ValueError: invalid literal for int() with base 10: '3 4\r'

Test 34

Group: 1

Verdict:

input
5 0

correct output
128

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 3, in <module>
    ui = int(input())
ValueError: invalid literal for int() with base 10: '5 0\r'

Test 35

Group: 1

Verdict:

input
5 1
14

correct output
96

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 3, in <module>
    ui = int(input())
ValueError: invalid literal for int() with base 10: '5 1\r'

Test 36

Group: 2

Verdict:

input
2 0

correct output
2

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 3, in <module>
    ui = int(input())
ValueError: invalid literal for int() with base 10: '2 0\r'

Test 37

Group: 2

Verdict:

input
3 0

correct output
8

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 3, in <module>
    ui = int(input())
ValueError: invalid literal for int() with base 10: '3 0\r'

Test 38

Group: 2

Verdict:

input
4 0

correct output
32

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 3, in <module>
    ui = int(input())
ValueError: invalid literal for int() with base 10: '4 0\r'

Test 39

Group: 2

Verdict:

input
23 0

correct output
92960636

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 3, in <module>
    ui = int(input())
ValueError: invalid literal for int() with base 10: '23 0\r'

Test 40

Group: 2

Verdict:

input
36 0

correct output
635008130

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 3, in <module>
    ui = int(input())
ValueError: invalid literal for int() with base 10: '36 0\r'

Test 41

Group: 2

Verdict:

input
42 0

correct output
993282280

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 3, in <module>
    ui = int(input())
ValueError: invalid literal for int() with base 10: '42 0\r'

Test 42

Group: 2

Verdict:

input
57 0

correct output
608377687

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 3, in <module>
    ui = int(input())
ValueError: invalid literal for int() with base 10: '57 0\r'

Test 43

Group: 2

Verdict:

input
58 0

correct output
433510734

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 3, in <module>
    ui = int(input())
ValueError: invalid literal for int() with base 10: '58 0\r'

Test 44

Group: 2

Verdict:

input
59 0

correct output
734042929

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 3, in <module>
    ui = int(input())
ValueError: invalid literal for int() with base 10: '59 0\r'

Test 45

Group: 2

Verdict:

input
60 0

correct output
936171702

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 3, in <module>
    ui = int(input())
ValueError: invalid literal for int() with base 10: '60 0\r'

Test 46

Group: 3

Verdict:

input
2 0

correct output
2

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 3, in <module>
    ui = int(input())
ValueError: invalid literal for int() with base 10: '2 0\r'

Test 47

Group: 3

Verdict:

input
2 1
2

correct output
0

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 3, in <module>
    ui = int(input())
ValueError: invalid literal for int() with base 10: '2 1\r'

Test 48

Group: 3

Verdict:

input
2 1
3

correct output
0

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 3, in <module>
    ui = int(input())
ValueError: invalid literal for int() with base 10: '2 1\r'

Test 49

Group: 3

Verdict:

input
2 2
2
3

correct output
0

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 3, in <module>
    ui = int(input())
ValueError: invalid literal for int() with base 10: '2 2\r'

Test 50

Group: 3

Verdict:

input
59 0

correct output
734042929

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 3, in <module>
    ui = int(input())
ValueError: invalid literal for int() with base 10: '59 0\r'

Test 51

Group: 3

Verdict:

input
60 0

correct output
936171702

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 3, in <module>
    ui = int(input())
ValueError: invalid literal for int() with base 10: '60 0\r'

Test 52

Group: 3

Verdict:

input
60 1
2

correct output
0

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 3, in <module>
    ui = int(input())
ValueError: invalid literal for int() with base 10: '60 1\r'

Test 53

Group: 3

Verdict:

input
60 1
576460752303423487

correct output
399775198

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 3, in <module>
    ui = int(input())
ValueError: invalid literal for int() with base 10: '60 1\r'

Test 54

Group: 3

Verdict:

input
60 1
1152921504606846975

correct output
667973450

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 3, in <module>
    ui = int(input())
ValueError: invalid literal for int() with base 10: '60 1\r'

Test 55

Group: 3

Verdict:

input
60 100000
793144025126277478
493960657696318193
320344157019848454
997683950258055349
...

correct output
12813436

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 3, in <module>
    ui = int(input())
ValueError: invalid literal for int() with base 10: '60 100000\r'

Test 56

Group: 3

Verdict:

input
60 100000
986789393060040220
494066507202684187
290830182157570659
210871095549437400
...

correct output
95910570

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 3, in <module>
    ui = int(input())
ValueError: invalid literal for int() with base 10: '60 100000\r'

Test 57

Group: 3

Verdict:

input
60 100000
562299894758506682
731132428235172865
481500339045425690
208947005967360560
...

correct output
331624281

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 3, in <module>
    ui = int(input())
ValueError: invalid literal for int() with base 10: '60 100000\r'

Test 58

Group: 3

Verdict:

input
60 100000
257846911019866261
803021202233459674
658685893766403373
874237705485665885
...

correct output
880725152

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 3, in <module>
    ui = int(input())
ValueError: invalid literal for int() with base 10: '60 100000\r'

Test 59

Group: 3

Verdict:

input
60 100000
681388061028265547
990382999862855868
290694941402209648
491574111397234946
...

correct output
768320742

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 3, in <module>
    ui = int(input())
ValueError: invalid literal for int() with base 10: '60 100000\r'

Test 60

Group: 3

Verdict:

input
60 100000
816968727394104576
879176301780517486
1075817811951859004
632046213104404023
...

correct output
111155168

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 3, in <module>
    ui = int(input())
ValueError: invalid literal for int() with base 10: '60 100000\r'

Test 61

Group: 3

Verdict:

input
60 100000
406817930303406656
101704482575856800
406817930303412346
813635860606874021
...

correct output
295651662

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 3, in <module>
    ui = int(input())
ValueError: invalid literal for int() with base 10: '60 100000\r'

Test 62

Group: 3

Verdict:

input
59 100000
234885934259928845
244746379456935555
40048493361902167
530369614866009610
...

correct output
78892926

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 3, in <module>
    ui = int(input())
ValueError: invalid literal for int() with base 10: '59 100000\r'

Test 63

Group: 3

Verdict:

input
16 65534
26355
15205
3420
22822
...

correct output
0

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 3, in <module>
    ui = int(input())
ValueError: invalid literal for int() with base 10: '16 65534\r'

Test 64

Group: 3

Verdict:

input
60 99999
1030879879260090869
925369330408563145
403438777989811739
321883235203598800
...

correct output
596899803

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 3, in <module>
    ui = int(input())
ValueError: invalid literal for int() with base 10: '60 99999\r'

Test 65

Group: 3

Verdict:

input
60 100000
418885324976523921
418885324976523063
837770649953084829
104721331244134167
...

correct output
0

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 3, in <module>
    ui = int(input())
ValueError: invalid literal for int() with base 10: '60 100000\r'

Test 66

Group: 3

Verdict:

input
43 100000
5497882741157
4163319796881
3705445016042
8647080351851
...

correct output
317037701

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 3, in <module>
    ui = int(input())
ValueError: invalid literal for int() with base 10: '43 100000\r'

Test 67

Group: 3

Verdict:

input
3 0

correct output
8

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 3, in <module>
    ui = int(input())
ValueError: invalid literal for int() with base 10: '3 0\r'

Test 68

Group: 3

Verdict:

input
3 1
2

correct output
0

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 3, in <module>
    ui = int(input())
ValueError: invalid literal for int() with base 10: '3 1\r'

Test 69

Group: 3

Verdict:

input
3 1
3

correct output
0

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 3, in <module>
    ui = int(input())
ValueError: invalid literal for int() with base 10: '3 1\r'

Test 70

Group: 3

Verdict:

input
3 2
4
6

correct output
2

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 3, in <module>
    ui = int(input())
ValueError: invalid literal for int() with base 10: '3 2\r'

Test 71

Group: 3

Verdict:

input
3 2
4
7

correct output
2

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 3, in <module>
    ui = int(input())
ValueError: invalid literal for int() with base 10: '3 2\r'

Test 72

Group: 3

Verdict:

input
3 2
5
6

correct output
2

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 3, in <module>
    ui = int(input())
ValueError: invalid literal for int() with base 10: '3 2\r'

Test 73

Group: 3

Verdict:

input
3 2
5
7

correct output
2

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 3, in <module>
    ui = int(input())
ValueError: invalid literal for int() with base 10: '3 2\r'

Test 74

Group: 3

Verdict:

input
3 2
3
6

correct output
0

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 3, in <module>
    ui = int(input())
ValueError: invalid literal for int() with base 10: '3 2\r'

Test 75

Group: 3

Verdict:

input
3 3
4
5
6

correct output
0

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 3, in <module>
    ui = int(input())
ValueError: invalid literal for int() with base 10: '3 3\r'

Test 76

Group: 3

Verdict:

input
3 3
4
6
7

correct output
0

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 3, in <module>
    ui = int(input())
ValueError: invalid literal for int() with base 10: '3 3\r'

Test 77

Group: 3

Verdict:

input
3 4
4
5
6
7

correct output
0

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 3, in <module>
    ui = int(input())
ValueError: invalid literal for int() with base 10: '3 4\r'