結果
| 問題 |
No.1184 Hà Nội
|
| コンテスト | |
| ユーザー |
_matumo_
|
| 提出日時 | 2020-09-02 22:51:15 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 98 bytes |
| コンパイル時間 | 165 ms |
| コンパイル使用メモリ | 12,672 KB |
| 実行使用メモリ | 229,660 KB |
| 最終ジャッジ日時 | 2024-11-21 23:56:50 |
| 合計ジャッジ時間 | 22,768 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 20 TLE * 7 |
ソースコード
def main():
N,L=map(int,input().split())
n=(N+L-1)//L
print((2**n-1)%998244353)
main()
_matumo_