結果

問題 No.2055 12x34...
ユーザー ああああ
提出日時 2022-12-28 16:16:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 323 ms / 2,000 ms
コード長 273 bytes
コンパイル時間 177 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 214,776 KB
最終ジャッジ日時 2024-05-02 22:18:26
合計ジャッジ時間 7,726 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
53,248 KB
testcase_01 AC 54 ms
53,504 KB
testcase_02 AC 70 ms
74,112 KB
testcase_03 AC 94 ms
90,752 KB
testcase_04 AC 102 ms
97,536 KB
testcase_05 AC 110 ms
100,608 KB
testcase_06 AC 106 ms
97,792 KB
testcase_07 AC 98 ms
92,416 KB
testcase_08 AC 80 ms
83,712 KB
testcase_09 AC 110 ms
100,992 KB
testcase_10 AC 116 ms
104,192 KB
testcase_11 AC 82 ms
81,024 KB
testcase_12 AC 204 ms
147,872 KB
testcase_13 AC 293 ms
187,952 KB
testcase_14 AC 148 ms
109,952 KB
testcase_15 AC 148 ms
107,392 KB
testcase_16 AC 323 ms
214,776 KB
testcase_17 AC 104 ms
89,472 KB
testcase_18 AC 138 ms
101,120 KB
testcase_19 AC 81 ms
77,568 KB
testcase_20 AC 69 ms
69,376 KB
testcase_21 AC 80 ms
77,824 KB
testcase_22 AC 167 ms
119,964 KB
testcase_23 AC 173 ms
114,988 KB
testcase_24 AC 195 ms
141,472 KB
testcase_25 AC 181 ms
125,208 KB
testcase_26 AC 186 ms
124,952 KB
testcase_27 AC 202 ms
141,732 KB
testcase_28 AC 190 ms
130,732 KB
testcase_29 AC 195 ms
141,856 KB
testcase_30 AC 183 ms
124,712 KB
testcase_31 AC 184 ms
125,484 KB
testcase_32 AC 180 ms
124,596 KB
testcase_33 AC 127 ms
105,600 KB
testcase_34 AC 123 ms
105,600 KB
testcase_35 AC 123 ms
105,728 KB
testcase_36 AC 127 ms
105,600 KB
testcase_37 AC 122 ms
105,728 KB
testcase_38 AC 123 ms
105,728 KB
testcase_39 AC 124 ms
105,728 KB
testcase_40 AC 125 ms
105,600 KB
testcase_41 AC 124 ms
105,600 KB
testcase_42 AC 122 ms
105,856 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
N=int(input())
A=list(map(int,input().split()))
d=defaultdict(int)
cnt=defaultdict(int)
mod=998244353
for i in range(N):
    cnt[A[i]]+=1
    cnt[A[i]]%=mod
    d[A[i]]+=d[A[i]-1]+cnt[A[i]-1]
    d[A[i]]%=mod
print(sum(d.values())%mod)

0