結果

問題 No.2055 12x34...
ユーザー taiga0629kyoprotaiga0629kyopro
提出日時 2022-08-24 09:08:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 192 ms / 2,000 ms
コード長 220 bytes
コンパイル時間 735 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 136,816 KB
最終ジャッジ日時 2024-10-11 19:14:18
合計ジャッジ時間 7,724 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,200 KB
testcase_01 AC 38 ms
51,840 KB
testcase_02 AC 53 ms
69,632 KB
testcase_03 AC 67 ms
83,200 KB
testcase_04 AC 79 ms
93,568 KB
testcase_05 AC 81 ms
97,408 KB
testcase_06 AC 76 ms
93,440 KB
testcase_07 AC 69 ms
85,760 KB
testcase_08 AC 62 ms
78,080 KB
testcase_09 AC 82 ms
99,072 KB
testcase_10 AC 88 ms
103,168 KB
testcase_11 AC 59 ms
75,904 KB
testcase_12 AC 151 ms
126,208 KB
testcase_13 AC 189 ms
132,348 KB
testcase_14 AC 98 ms
101,376 KB
testcase_15 AC 98 ms
101,504 KB
testcase_16 AC 192 ms
136,816 KB
testcase_17 AC 74 ms
88,064 KB
testcase_18 AC 102 ms
101,120 KB
testcase_19 AC 57 ms
71,552 KB
testcase_20 AC 49 ms
65,280 KB
testcase_21 AC 57 ms
72,192 KB
testcase_22 AC 125 ms
109,136 KB
testcase_23 AC 123 ms
108,160 KB
testcase_24 AC 134 ms
110,976 KB
testcase_25 AC 128 ms
110,848 KB
testcase_26 AC 128 ms
111,232 KB
testcase_27 AC 134 ms
110,720 KB
testcase_28 AC 131 ms
111,360 KB
testcase_29 AC 133 ms
110,848 KB
testcase_30 AC 128 ms
111,488 KB
testcase_31 AC 127 ms
111,488 KB
testcase_32 AC 126 ms
111,488 KB
testcase_33 AC 94 ms
104,704 KB
testcase_34 AC 94 ms
104,960 KB
testcase_35 AC 95 ms
104,832 KB
testcase_36 AC 95 ms
104,960 KB
testcase_37 AC 95 ms
104,704 KB
testcase_38 AC 95 ms
104,704 KB
testcase_39 AC 95 ms
104,960 KB
testcase_40 AC 95 ms
104,832 KB
testcase_41 AC 95 ms
104,576 KB
testcase_42 AC 95 ms
105,088 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from _collections import defaultdict
n=int(input())
a=list(map(int,input().split()))
ans=0
mod=998244353
dp=defaultdict(int)
for x in a:
    dp[x]+=1+dp[x-1]
    dp[x]%=mod
for x in dp:ans+=dp[x]
ans-=n
print(ans%mod)

0