Submission #1531979


Source Code Expand

N = int(input())
secound = [64,32,16,8,4,2,1]
for i in secound:
    if N >= i:
        print(i)
        break

Submission Info

Submission Time
Task B - Break Number
User tokuzenw
Language Python (3.4.3)
Score 200
Code Size 114 Byte
Status AC
Exec Time 18 ms
Memory 2940 KB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 200 / 200
Status
AC × 4
AC × 17
Set Name Test Cases
Sample example0, example1, example2, example3
All example0, example1, example2, example3, handmade0, handmade1, handmade2, rand0, rand1, rand2, rand3, rand4, rand5, rand6, rand7, rand8, rand9
Case Name Status Exec Time Memory
example0 AC 17 ms 2940 KB
example1 AC 17 ms 2940 KB
example2 AC 17 ms 2940 KB
example3 AC 18 ms 2940 KB
handmade0 AC 17 ms 2940 KB
handmade1 AC 17 ms 2940 KB
handmade2 AC 17 ms 2940 KB
rand0 AC 17 ms 2940 KB
rand1 AC 17 ms 2940 KB
rand2 AC 18 ms 2940 KB
rand3 AC 17 ms 2940 KB
rand4 AC 18 ms 2940 KB
rand5 AC 17 ms 2940 KB
rand6 AC 17 ms 2940 KB
rand7 AC 18 ms 2940 KB
rand8 AC 17 ms 2940 KB
rand9 AC 17 ms 2940 KB