結果

問題 No.2055 12x34...
ユーザー SyuKing_OrderSyuKing_Order
提出日時 2022-08-21 13:13:25
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 283 bytes
コンパイル時間 480 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 262,240 KB
最終ジャッジ日時 2024-10-10 06:02:54
合計ジャッジ時間 7,741 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
57,472 KB
testcase_01 AC 42 ms
51,712 KB
testcase_02 AC 74 ms
76,416 KB
testcase_03 AC 104 ms
93,176 KB
testcase_04 AC 118 ms
100,488 KB
testcase_05 AC 123 ms
103,592 KB
testcase_06 AC 117 ms
100,408 KB
testcase_07 AC 105 ms
95,176 KB
testcase_08 AC 92 ms
89,512 KB
testcase_09 AC 125 ms
104,192 KB
testcase_10 AC 131 ms
107,500 KB
testcase_11 AC 84 ms
85,032 KB
testcase_12 AC 102 ms
106,240 KB
testcase_13 AC 137 ms
105,608 KB
testcase_14 AC 84 ms
89,856 KB
testcase_15 AC 85 ms
89,984 KB
testcase_16 AC 144 ms
107,224 KB
testcase_17 AC 1,448 ms
156,452 KB
testcase_18 TLE -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = list(map(int, input().split()))
g = {}
dist = [0]*n
for i in range(n):
    ai = a[i]
    if ai in g:
        dist[i] = g[ai]
    if ai+1 in g:
        g[ai+1] += dist[i]+1
    else:
        g[ai+1] = dist[i]+1
    dist[i] %= 998244353
print(sum(dist)%998244353)
0