結果

問題 No.1186 長方形の敷き詰め
ユーザー NatsubiSoganNatsubiSogan
提出日時 2020-07-31 21:10:53
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 410 ms / 2,000 ms
コード長 328 bytes
コンパイル時間 85 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 54,044 KB
最終ジャッジ日時 2024-07-06 16:01:27
合計ジャッジ時間 5,299 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 371 ms
50,176 KB
testcase_01 AC 382 ms
50,048 KB
testcase_02 AC 27 ms
10,880 KB
testcase_03 AC 376 ms
50,048 KB
testcase_04 AC 384 ms
50,048 KB
testcase_05 AC 28 ms
10,752 KB
testcase_06 AC 29 ms
10,880 KB
testcase_07 AC 28 ms
10,880 KB
testcase_08 AC 27 ms
10,752 KB
testcase_09 AC 27 ms
10,752 KB
testcase_10 AC 27 ms
10,752 KB
testcase_11 AC 28 ms
10,880 KB
testcase_12 AC 27 ms
10,752 KB
testcase_13 AC 27 ms
10,752 KB
testcase_14 AC 28 ms
10,880 KB
testcase_15 AC 27 ms
10,752 KB
testcase_16 AC 401 ms
50,176 KB
testcase_17 AC 28 ms
10,752 KB
testcase_18 AC 28 ms
10,752 KB
testcase_19 AC 27 ms
10,880 KB
testcase_20 AC 26 ms
10,752 KB
testcase_21 AC 27 ms
10,880 KB
testcase_22 AC 387 ms
50,048 KB
testcase_23 AC 410 ms
50,048 KB
testcase_24 AC 397 ms
54,044 KB
testcase_25 AC 396 ms
53,452 KB
testcase_26 AC 28 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m = map(int, input().split())
if (not 1 <= n <= 10 ** 9) or (not 1 <= m <= 10 ** 6):
    exit(print(1 % 0))
mod = 998244353
if n == 1:
    print(1)
elif n > m:
    print(1)
elif n == m:
    print(2)
else:
    a = [1] * (n - 1) + [2]
    for i in range(10 ** 6 + 1):
        a.append((a[-1] + a[-n]) % mod)
    print(a[m - 1])
0