結果

問題 No.2055 12x34...
ユーザー ああいいああいい
提出日時 2022-08-21 17:27:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 191 ms / 2,000 ms
コード長 316 bytes
コンパイル時間 166 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 137,176 KB
最終ジャッジ日時 2024-10-10 06:17:10
合計ジャッジ時間 6,757 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
53,632 KB
testcase_01 AC 46 ms
54,016 KB
testcase_02 AC 69 ms
71,736 KB
testcase_03 AC 84 ms
85,888 KB
testcase_04 AC 94 ms
95,732 KB
testcase_05 AC 102 ms
100,472 KB
testcase_06 AC 92 ms
95,744 KB
testcase_07 AC 86 ms
88,320 KB
testcase_08 AC 77 ms
80,384 KB
testcase_09 AC 104 ms
100,776 KB
testcase_10 AC 110 ms
103,884 KB
testcase_11 AC 73 ms
78,464 KB
testcase_12 AC 141 ms
109,480 KB
testcase_13 AC 182 ms
133,144 KB
testcase_14 AC 110 ms
104,320 KB
testcase_15 AC 110 ms
104,268 KB
testcase_16 AC 191 ms
137,176 KB
testcase_17 AC 88 ms
89,452 KB
testcase_18 AC 116 ms
100,924 KB
testcase_19 AC 69 ms
73,344 KB
testcase_20 AC 59 ms
66,688 KB
testcase_21 AC 68 ms
73,472 KB
testcase_22 AC 143 ms
108,956 KB
testcase_23 AC 139 ms
106,572 KB
testcase_24 AC 149 ms
110,048 KB
testcase_25 AC 143 ms
106,836 KB
testcase_26 AC 144 ms
106,728 KB
testcase_27 AC 151 ms
110,272 KB
testcase_28 AC 146 ms
106,928 KB
testcase_29 AC 154 ms
109,752 KB
testcase_30 AC 144 ms
107,136 KB
testcase_31 AC 144 ms
107,136 KB
testcase_32 AC 144 ms
107,020 KB
testcase_33 AC 114 ms
105,388 KB
testcase_34 AC 113 ms
105,092 KB
testcase_35 AC 114 ms
105,472 KB
testcase_36 AC 114 ms
105,416 KB
testcase_37 AC 112 ms
105,508 KB
testcase_38 AC 114 ms
105,352 KB
testcase_39 AC 118 ms
105,304 KB
testcase_40 AC 114 ms
105,444 KB
testcase_41 AC 113 ms
105,380 KB
testcase_42 AC 114 ms
105,708 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

from collections import defaultdict
ans = 0
P = 998244353

d = defaultdict(int)

for a in A:
    ans += d[a-1]
    d[a] += 1 + d[a-1]
    d[a] %= P
"""
d = defaultdict(int)
for a in A:
    ans += d[a + 1]
    d[a] += d[a + 1] + 1
    d[a] %= P
"""
print(ans % P)
0