結果

問題 No.2055 12x34...
ユーザー 👑 rin204rin204
提出日時 2022-08-23 14:58:27
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 185 bytes
コンパイル時間 192 ms
コンパイル使用メモリ 82,284 KB
実行使用メモリ 525,088 KB
最終ジャッジ日時 2024-10-10 22:47:29
合計ジャッジ時間 8,200 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,436 KB
testcase_01 AC 39 ms
52,932 KB
testcase_02 AC 65 ms
79,136 KB
testcase_03 AC 88 ms
90,552 KB
testcase_04 AC 94 ms
97,644 KB
testcase_05 AC 100 ms
100,444 KB
testcase_06 AC 96 ms
97,592 KB
testcase_07 AC 85 ms
92,392 KB
testcase_08 AC 75 ms
86,876 KB
testcase_09 AC 98 ms
100,684 KB
testcase_10 AC 105 ms
104,212 KB
testcase_11 AC 74 ms
85,516 KB
testcase_12 AC 89 ms
105,876 KB
testcase_13 AC 119 ms
103,868 KB
testcase_14 AC 72 ms
90,008 KB
testcase_15 AC 73 ms
90,280 KB
testcase_16 AC 124 ms
105,972 KB
testcase_17 AC 290 ms
155,924 KB
testcase_18 AC 758 ms
341,936 KB
testcase_19 AC 97 ms
90,112 KB
testcase_20 AC 60 ms
77,636 KB
testcase_21 AC 99 ms
89,980 KB
testcase_22 MLE -
testcase_23 AC 111 ms
109,580 KB
testcase_24 AC 119 ms
120,468 KB
testcase_25 AC 109 ms
112,304 KB
testcase_26 AC 110 ms
118,652 KB
testcase_27 AC 116 ms
120,520 KB
testcase_28 AC 115 ms
122,128 KB
testcase_29 AC 114 ms
114,968 KB
testcase_30 AC 114 ms
118,532 KB
testcase_31 AC 111 ms
122,012 KB
testcase_32 AC 110 ms
122,116 KB
testcase_33 AC 127 ms
105,164 KB
testcase_34 AC 128 ms
105,176 KB
testcase_35 AC 131 ms
105,164 KB
testcase_36 AC 124 ms
105,224 KB
testcase_37 AC 126 ms
105,064 KB
testcase_38 AC 126 ms
105,016 KB
testcase_39 AC 126 ms
105,208 KB
testcase_40 AC 125 ms
105,320 KB
testcase_41 AC 127 ms
105,056 KB
testcase_42 AC 126 ms
105,024 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 998244353

n = int(input())
A = list(map(int, input().split()))
dp = {}
ans = 0
for a in A:
    x = dp.get(a - 1, 0)
    ans += x
    dp[a] = dp.get(a, 0) + x + 1
print(ans % MOD)
0