結果

問題 No.2055 12x34...
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2022-08-21 14:01:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 128 ms / 2,000 ms
コード長 198 bytes
コンパイル時間 240 ms
コンパイル使用メモリ 82,296 KB
実行使用メモリ 119,036 KB
最終ジャッジ日時 2024-10-10 06:09:46
合計ジャッジ時間 5,540 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,448 KB
testcase_01 AC 38 ms
52,396 KB
testcase_02 AC 55 ms
71,592 KB
testcase_03 AC 65 ms
83,812 KB
testcase_04 AC 74 ms
92,440 KB
testcase_05 AC 78 ms
96,268 KB
testcase_06 AC 75 ms
93,164 KB
testcase_07 AC 67 ms
86,644 KB
testcase_08 AC 62 ms
78,252 KB
testcase_09 AC 79 ms
97,592 KB
testcase_10 AC 82 ms
101,624 KB
testcase_11 AC 59 ms
76,904 KB
testcase_12 AC 96 ms
106,876 KB
testcase_13 AC 120 ms
104,200 KB
testcase_14 AC 71 ms
90,144 KB
testcase_15 AC 77 ms
90,712 KB
testcase_16 AC 128 ms
106,056 KB
testcase_17 AC 68 ms
86,924 KB
testcase_18 AC 91 ms
101,120 KB
testcase_19 AC 52 ms
71,440 KB
testcase_20 AC 45 ms
65,860 KB
testcase_21 AC 54 ms
71,532 KB
testcase_22 AC 113 ms
109,004 KB
testcase_23 AC 112 ms
108,764 KB
testcase_24 AC 121 ms
118,904 KB
testcase_25 AC 114 ms
112,508 KB
testcase_26 AC 114 ms
118,624 KB
testcase_27 AC 120 ms
118,716 KB
testcase_28 AC 117 ms
118,784 KB
testcase_29 AC 120 ms
115,280 KB
testcase_30 AC 116 ms
118,764 KB
testcase_31 AC 116 ms
118,980 KB
testcase_32 AC 114 ms
119,036 KB
testcase_33 AC 95 ms
104,928 KB
testcase_34 AC 86 ms
103,612 KB
testcase_35 AC 94 ms
105,100 KB
testcase_36 AC 87 ms
103,692 KB
testcase_37 AC 87 ms
103,848 KB
testcase_38 AC 93 ms
104,988 KB
testcase_39 AC 87 ms
103,760 KB
testcase_40 AC 87 ms
103,636 KB
testcase_41 AC 87 ms
103,724 KB
testcase_42 AC 88 ms
103,612 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
A = list(map(int,input().split()))
mod = 998244353
ans = 0

dic = {}
for a in A:
    ans += dic.get(a-1,0)
    ans %= mod
    dic[a] = (dic.get(a,0)+dic.get(a-1,0)+1)%mod
print(ans)
0