結果
問題 |
No.820 Power of Two
|
ユーザー |
![]() |
提出日時 | 2021-01-11 10:18:39 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
TLE
|
実行時間 | - |
コード長 | 94 bytes |
コンパイル時間 | 191 ms |
コンパイル使用メモリ | 12,416 KB |
実行使用メモリ | 20,992 KB |
最終ジャッジ日時 | 2024-11-21 08:51:51 |
合計ジャッジ時間 | 16,114 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 5 TLE * 5 |
ソースコード
n,k=map(int,input().split()) t=2**k;cnt=0 for i in range(1,2**n+1): cnt+=i%t==0 print(cnt)