結果

問題 No.2055 12x34...
ユーザー ytftytft
提出日時 2022-08-23 13:52:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 132 ms / 2,000 ms
コード長 239 bytes
コンパイル時間 180 ms
コンパイル使用メモリ 82,280 KB
実行使用メモリ 109,176 KB
最終ジャッジ日時 2024-10-10 21:27:33
合計ジャッジ時間 6,778 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,692 KB
testcase_01 AC 37 ms
53,012 KB
testcase_02 AC 54 ms
72,272 KB
testcase_03 AC 70 ms
84,708 KB
testcase_04 AC 80 ms
95,136 KB
testcase_05 AC 84 ms
98,784 KB
testcase_06 AC 79 ms
94,412 KB
testcase_07 AC 77 ms
88,432 KB
testcase_08 AC 64 ms
80,052 KB
testcase_09 AC 90 ms
100,524 KB
testcase_10 AC 98 ms
103,868 KB
testcase_11 AC 62 ms
78,944 KB
testcase_12 AC 92 ms
106,548 KB
testcase_13 AC 124 ms
104,272 KB
testcase_14 AC 75 ms
90,936 KB
testcase_15 AC 80 ms
91,760 KB
testcase_16 AC 132 ms
105,820 KB
testcase_17 AC 77 ms
89,448 KB
testcase_18 AC 102 ms
100,956 KB
testcase_19 AC 57 ms
72,492 KB
testcase_20 AC 51 ms
67,420 KB
testcase_21 AC 59 ms
74,024 KB
testcase_22 AC 127 ms
108,996 KB
testcase_23 AC 122 ms
108,320 KB
testcase_24 AC 129 ms
109,120 KB
testcase_25 AC 128 ms
107,916 KB
testcase_26 AC 126 ms
108,364 KB
testcase_27 AC 129 ms
109,160 KB
testcase_28 AC 126 ms
107,888 KB
testcase_29 AC 132 ms
109,176 KB
testcase_30 AC 124 ms
108,236 KB
testcase_31 AC 127 ms
108,084 KB
testcase_32 AC 130 ms
108,040 KB
testcase_33 AC 103 ms
105,008 KB
testcase_34 AC 102 ms
105,096 KB
testcase_35 AC 101 ms
104,816 KB
testcase_36 AC 102 ms
104,980 KB
testcase_37 AC 103 ms
104,824 KB
testcase_38 AC 101 ms
104,908 KB
testcase_39 AC 102 ms
104,760 KB
testcase_40 AC 101 ms
104,900 KB
testcase_41 AC 102 ms
105,044 KB
testcase_42 AC 103 ms
104,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod=998244353
dp={}
ans=0
N=int(input())
A=list(map(int,input().split()))
for i in range(N-1,-1,-1):
	if not A[i] in dp:
		dp[A[i]]=0
	if A[i]+1 in dp:
		ans=(ans+dp[A[i]+1])%mod
		dp[A[i]]+=dp[A[i]+1]
	dp[A[i]]=(dp[A[i]]+1)%mod
print(ans)
0