結果

問題 No.820 Power of Two
ユーザー pypypymipypypymi
提出日時 2022-02-04 12:13:10
言語 PyPy3
(7.3.15)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 114 bytes
コンパイル時間 222 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 58,368 KB
最終ジャッジ日時 2024-06-11 10:10:12
合計ジャッジ時間 8,489 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,584 KB
testcase_01 AC 33 ms
51,584 KB
testcase_02 AC 1,598 ms
57,216 KB
testcase_03 AC 35 ms
51,712 KB
testcase_04 AC 34 ms
51,840 KB
testcase_05 AC 1,841 ms
57,984 KB
testcase_06 AC 42 ms
58,112 KB
testcase_07 AC 280 ms
58,368 KB
testcase_08 TLE -
testcase_09 AC 1,872 ms
57,856 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,k = map(int,input().split())
count=0
for i in range(1,2**n+1):
    if i%(2**k)==0:
        count+=1
print(count)
0