結果

問題 No.2055 12x34...
ユーザー AEnAEn
提出日時 2022-11-20 14:51:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 185 ms / 2,000 ms
コード長 247 bytes
コンパイル時間 152 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 156,008 KB
最終ジャッジ日時 2024-09-21 14:52:05
合計ジャッジ時間 7,506 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,992 KB
testcase_01 AC 42 ms
53,120 KB
testcase_02 AC 67 ms
72,064 KB
testcase_03 AC 81 ms
86,272 KB
testcase_04 AC 89 ms
96,000 KB
testcase_05 AC 96 ms
100,480 KB
testcase_06 AC 87 ms
95,360 KB
testcase_07 AC 79 ms
88,320 KB
testcase_08 AC 70 ms
80,512 KB
testcase_09 AC 97 ms
100,992 KB
testcase_10 AC 102 ms
104,064 KB
testcase_11 AC 69 ms
78,336 KB
testcase_12 AC 131 ms
112,324 KB
testcase_13 AC 170 ms
133,036 KB
testcase_14 AC 102 ms
104,448 KB
testcase_15 AC 102 ms
104,832 KB
testcase_16 AC 185 ms
156,008 KB
testcase_17 AC 81 ms
89,984 KB
testcase_18 AC 106 ms
101,248 KB
testcase_19 AC 64 ms
73,344 KB
testcase_20 AC 56 ms
66,816 KB
testcase_21 AC 63 ms
73,600 KB
testcase_22 AC 135 ms
109,428 KB
testcase_23 AC 125 ms
106,880 KB
testcase_24 AC 142 ms
109,884 KB
testcase_25 AC 136 ms
106,752 KB
testcase_26 AC 131 ms
106,752 KB
testcase_27 AC 138 ms
110,016 KB
testcase_28 AC 133 ms
106,624 KB
testcase_29 AC 136 ms
109,900 KB
testcase_30 AC 129 ms
106,624 KB
testcase_31 AC 138 ms
106,880 KB
testcase_32 AC 134 ms
106,752 KB
testcase_33 AC 106 ms
105,344 KB
testcase_34 AC 108 ms
105,472 KB
testcase_35 AC 108 ms
105,344 KB
testcase_36 AC 103 ms
105,344 KB
testcase_37 AC 102 ms
105,472 KB
testcase_38 AC 101 ms
105,472 KB
testcase_39 AC 107 ms
105,344 KB
testcase_40 AC 106 ms
105,600 KB
testcase_41 AC 104 ms
105,472 KB
testcase_42 AC 105 ms
105,344 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict

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

d = defaultdict(int)
res = 0
for i in range(N):
    res += d[A[i]-1]
    res %= mod
    d[A[i]] += 1+d[A[i]-1]
    d[A[i]] %= mod
print(res)
0