結果

問題 No.2055 12x34...
ユーザー H3PO4H3PO4
提出日時 2022-08-21 13:06:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 144 ms / 2,000 ms
コード長 222 bytes
コンパイル時間 310 ms
コンパイル使用メモリ 82,096 KB
実行使用メモリ 114,776 KB
最終ジャッジ日時 2024-10-10 06:01:16
合計ジャッジ時間 5,807 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,160 KB
testcase_01 AC 39 ms
53,492 KB
testcase_02 AC 58 ms
69,416 KB
testcase_03 AC 65 ms
77,960 KB
testcase_04 AC 70 ms
84,408 KB
testcase_05 AC 73 ms
86,884 KB
testcase_06 AC 70 ms
84,752 KB
testcase_07 AC 63 ms
79,712 KB
testcase_08 AC 58 ms
73,784 KB
testcase_09 AC 84 ms
94,488 KB
testcase_10 AC 85 ms
96,872 KB
testcase_11 AC 57 ms
73,468 KB
testcase_12 AC 92 ms
100,440 KB
testcase_13 AC 131 ms
110,564 KB
testcase_14 AC 76 ms
86,836 KB
testcase_15 AC 78 ms
86,652 KB
testcase_16 AC 144 ms
112,776 KB
testcase_17 AC 70 ms
84,192 KB
testcase_18 AC 98 ms
96,684 KB
testcase_19 AC 55 ms
71,448 KB
testcase_20 AC 50 ms
65,448 KB
testcase_21 AC 56 ms
71,632 KB
testcase_22 AC 111 ms
99,688 KB
testcase_23 AC 119 ms
101,784 KB
testcase_24 AC 128 ms
114,776 KB
testcase_25 AC 123 ms
106,484 KB
testcase_26 AC 121 ms
106,208 KB
testcase_27 AC 127 ms
114,660 KB
testcase_28 AC 123 ms
109,232 KB
testcase_29 AC 128 ms
114,720 KB
testcase_30 AC 124 ms
106,284 KB
testcase_31 AC 121 ms
105,984 KB
testcase_32 AC 118 ms
105,904 KB
testcase_33 AC 95 ms
97,908 KB
testcase_34 AC 91 ms
97,872 KB
testcase_35 AC 97 ms
97,824 KB
testcase_36 AC 91 ms
97,816 KB
testcase_37 AC 91 ms
97,780 KB
testcase_38 AC 95 ms
97,924 KB
testcase_39 AC 90 ms
97,744 KB
testcase_40 AC 90 ms
98,080 KB
testcase_41 AC 91 ms
97,832 KB
testcase_42 AC 91 ms
97,864 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict

N = int(input())
A = map(int, input().split())

MOD = 998244353

dp = defaultdict(int)
for a in A:
    dp[a] += dp.get(a - 1, 0) + 1
    dp[a] %= MOD
print((sum(dp.values()) - N) % MOD)
0