結果

問題 No.2055 12x34...
ユーザー ああああ
提出日時 2022-12-28 16:16:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 269 ms / 2,000 ms
コード長 273 bytes
コンパイル時間 156 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 214,648 KB
最終ジャッジ日時 2024-11-23 17:19:47
合計ジャッジ時間 7,263 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
53,120 KB
testcase_01 AC 45 ms
53,248 KB
testcase_02 AC 75 ms
73,856 KB
testcase_03 AC 96 ms
90,624 KB
testcase_04 AC 103 ms
97,664 KB
testcase_05 AC 107 ms
100,736 KB
testcase_06 AC 102 ms
97,536 KB
testcase_07 AC 92 ms
92,288 KB
testcase_08 AC 78 ms
83,328 KB
testcase_09 AC 108 ms
100,992 KB
testcase_10 AC 111 ms
103,936 KB
testcase_11 AC 75 ms
81,280 KB
testcase_12 AC 186 ms
147,732 KB
testcase_13 AC 255 ms
188,328 KB
testcase_14 AC 129 ms
109,568 KB
testcase_15 AC 130 ms
107,136 KB
testcase_16 AC 269 ms
214,648 KB
testcase_17 AC 94 ms
89,344 KB
testcase_18 AC 125 ms
101,120 KB
testcase_19 AC 73 ms
77,568 KB
testcase_20 AC 64 ms
68,992 KB
testcase_21 AC 75 ms
77,568 KB
testcase_22 AC 154 ms
119,584 KB
testcase_23 AC 163 ms
114,868 KB
testcase_24 AC 186 ms
141,556 KB
testcase_25 AC 174 ms
124,948 KB
testcase_26 AC 172 ms
124,820 KB
testcase_27 AC 181 ms
141,600 KB
testcase_28 AC 175 ms
130,356 KB
testcase_29 AC 183 ms
141,352 KB
testcase_30 AC 167 ms
124,712 KB
testcase_31 AC 175 ms
124,956 KB
testcase_32 AC 173 ms
124,592 KB
testcase_33 AC 116 ms
105,472 KB
testcase_34 AC 120 ms
105,472 KB
testcase_35 AC 114 ms
105,344 KB
testcase_36 AC 120 ms
105,472 KB
testcase_37 AC 119 ms
105,600 KB
testcase_38 AC 119 ms
105,600 KB
testcase_39 AC 118 ms
105,344 KB
testcase_40 AC 119 ms
105,472 KB
testcase_41 AC 119 ms
105,344 KB
testcase_42 AC 119 ms
105,728 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