結果

問題 No.1372 Median of Submasks
ユーザー 👑 KazunKazun
提出日時 2021-02-05 21:24:09
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 51 bytes
コンパイル時間 250 ms
コンパイル使用メモリ 87,260 KB
実行使用メモリ 71,656 KB
最終ジャッジ日時 2023-09-15 07:06:20
合計ジャッジ時間 3,161 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 66 ms
71,364 KB
testcase_01 AC 68 ms
71,344 KB
testcase_02 AC 70 ms
71,524 KB
testcase_03 WA -
testcase_04 AC 67 ms
71,240 KB
testcase_05 WA -
testcase_06 AC 68 ms
71,132 KB
testcase_07 AC 69 ms
71,440 KB
testcase_08 AC 70 ms
71,396 KB
testcase_09 AC 69 ms
71,212 KB
testcase_10 AC 69 ms
71,124 KB
testcase_11 AC 68 ms
71,156 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 70 ms
71,348 KB
testcase_17 AC 69 ms
71,400 KB
testcase_18 AC 67 ms
71,348 KB
testcase_19 AC 68 ms
71,348 KB
testcase_20 AC 68 ms
71,368 KB
testcase_21 AC 68 ms
71,404 KB
testcase_22 AC 69 ms
71,132 KB
testcase_23 AC 69 ms
71,284 KB
testcase_24 AC 68 ms
71,404 KB
testcase_25 AC 70 ms
71,456 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())

y=1
while 2*y<N:
    y<<=1
print(y)
0