結果

問題 No.1184 Hà Nội
ユーザー qumazakiqumazaki
提出日時 2020-09-12 02:14:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 36 ms / 2,000 ms
コード長 102 bytes
コンパイル時間 529 ms
コンパイル使用メモリ 82,232 KB
実行使用メモリ 53,448 KB
最終ジャッジ日時 2024-06-09 09:25:37
合計ジャッジ時間 2,675 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,108 KB
testcase_01 AC 36 ms
53,340 KB
testcase_02 AC 33 ms
51,808 KB
testcase_03 AC 33 ms
52,852 KB
testcase_04 AC 35 ms
52,392 KB
testcase_05 AC 32 ms
51,800 KB
testcase_06 AC 32 ms
51,892 KB
testcase_07 AC 32 ms
52,944 KB
testcase_08 AC 34 ms
53,100 KB
testcase_09 AC 34 ms
52,124 KB
testcase_10 AC 33 ms
53,328 KB
testcase_11 AC 33 ms
52,288 KB
testcase_12 AC 31 ms
53,224 KB
testcase_13 AC 33 ms
52,956 KB
testcase_14 AC 32 ms
52,608 KB
testcase_15 AC 31 ms
51,868 KB
testcase_16 AC 32 ms
52,088 KB
testcase_17 AC 33 ms
52,620 KB
testcase_18 AC 34 ms
51,880 KB
testcase_19 AC 34 ms
51,952 KB
testcase_20 AC 33 ms
52,256 KB
testcase_21 AC 36 ms
52,072 KB
testcase_22 AC 32 ms
51,840 KB
testcase_23 AC 32 ms
51,936 KB
testcase_24 AC 33 ms
52,284 KB
testcase_25 AC 35 ms
52,644 KB
testcase_26 AC 32 ms
52,492 KB
testcase_27 AC 31 ms
52,852 KB
testcase_28 AC 31 ms
53,448 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,l = map(int,input().split())
mod = 998244353
x = -(-n//l)
ans = pow(2,x,mod)-1
ans %= mod
print(ans)
0