結果

問題 No.2055 12x34...
ユーザー 👑 KazunKazun
提出日時 2022-08-25 19:37:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 184 ms / 2,000 ms
コード長 198 bytes
コンパイル時間 189 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 155,404 KB
最終ジャッジ日時 2024-10-13 01:19:41
合計ジャッジ時間 7,211 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
54,548 KB
testcase_01 AC 42 ms
53,692 KB
testcase_02 AC 54 ms
71,228 KB
testcase_03 AC 67 ms
83,752 KB
testcase_04 AC 77 ms
94,436 KB
testcase_05 AC 79 ms
97,544 KB
testcase_06 AC 76 ms
94,416 KB
testcase_07 AC 68 ms
86,468 KB
testcase_08 AC 62 ms
79,576 KB
testcase_09 AC 82 ms
97,600 KB
testcase_10 AC 85 ms
102,076 KB
testcase_11 AC 62 ms
77,596 KB
testcase_12 AC 125 ms
112,004 KB
testcase_13 AC 163 ms
132,964 KB
testcase_14 AC 97 ms
104,080 KB
testcase_15 AC 96 ms
103,164 KB
testcase_16 AC 184 ms
155,404 KB
testcase_17 AC 74 ms
88,892 KB
testcase_18 AC 99 ms
101,048 KB
testcase_19 AC 57 ms
73,216 KB
testcase_20 AC 51 ms
67,172 KB
testcase_21 AC 57 ms
72,776 KB
testcase_22 AC 119 ms
109,288 KB
testcase_23 AC 118 ms
106,488 KB
testcase_24 AC 127 ms
109,608 KB
testcase_25 AC 121 ms
106,908 KB
testcase_26 AC 120 ms
106,444 KB
testcase_27 AC 128 ms
109,628 KB
testcase_28 AC 125 ms
106,788 KB
testcase_29 AC 130 ms
109,952 KB
testcase_30 AC 121 ms
106,496 KB
testcase_31 AC 123 ms
106,548 KB
testcase_32 AC 122 ms
106,608 KB
testcase_33 AC 97 ms
105,000 KB
testcase_34 AC 96 ms
105,048 KB
testcase_35 AC 97 ms
105,388 KB
testcase_36 AC 94 ms
105,296 KB
testcase_37 AC 95 ms
105,164 KB
testcase_38 AC 97 ms
105,364 KB
testcase_39 AC 97 ms
105,380 KB
testcase_40 AC 96 ms
105,360 KB
testcase_41 AC 95 ms
104,988 KB
testcase_42 AC 95 ms
105,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict

N=int(input())
A=list(map(int,input().split()))

DP=defaultdict(int)
X=0; Mod=998244353
for a in A:
    X+=DP[a-1]
    DP[a]=(DP[a]+DP[a-1]+1)%Mod

print(X%Mod)
0