結果

問題 No.2055 12x34...
ユーザー ShirotsumeShirotsume
提出日時 2022-08-28 02:19:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 147 ms / 2,000 ms
コード長 389 bytes
コンパイル時間 159 ms
コンパイル使用メモリ 82,104 KB
実行使用メモリ 124,824 KB
最終ジャッジ日時 2024-10-15 03:18:30
合計ジャッジ時間 7,014 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
53,356 KB
testcase_01 AC 41 ms
53,632 KB
testcase_02 AC 58 ms
73,716 KB
testcase_03 AC 72 ms
88,192 KB
testcase_04 AC 86 ms
97,664 KB
testcase_05 AC 89 ms
100,800 KB
testcase_06 AC 84 ms
97,664 KB
testcase_07 AC 75 ms
90,624 KB
testcase_08 AC 66 ms
82,048 KB
testcase_09 AC 92 ms
100,864 KB
testcase_10 AC 95 ms
104,320 KB
testcase_11 AC 64 ms
80,128 KB
testcase_12 AC 102 ms
98,280 KB
testcase_13 AC 132 ms
104,112 KB
testcase_14 AC 89 ms
97,024 KB
testcase_15 AC 90 ms
97,152 KB
testcase_16 AC 147 ms
124,824 KB
testcase_17 AC 83 ms
91,776 KB
testcase_18 AC 104 ms
101,364 KB
testcase_19 AC 60 ms
74,496 KB
testcase_20 AC 53 ms
67,584 KB
testcase_21 AC 61 ms
74,624 KB
testcase_22 AC 132 ms
109,540 KB
testcase_23 AC 125 ms
106,624 KB
testcase_24 AC 134 ms
109,936 KB
testcase_25 AC 129 ms
107,060 KB
testcase_26 AC 129 ms
106,624 KB
testcase_27 AC 132 ms
109,792 KB
testcase_28 AC 129 ms
106,880 KB
testcase_29 AC 134 ms
109,924 KB
testcase_30 AC 128 ms
106,752 KB
testcase_31 AC 131 ms
106,752 KB
testcase_32 AC 127 ms
106,932 KB
testcase_33 AC 105 ms
105,600 KB
testcase_34 AC 100 ms
105,344 KB
testcase_35 AC 105 ms
105,088 KB
testcase_36 AC 100 ms
105,344 KB
testcase_37 AC 100 ms
105,344 KB
testcase_38 AC 104 ms
105,344 KB
testcase_39 AC 101 ms
105,584 KB
testcase_40 AC 101 ms
105,344 KB
testcase_41 AC 102 ms
105,344 KB
testcase_42 AC 101 ms
105,344 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter
import sys
input = lambda: sys.stdin.readline().rstrip()
ii = lambda: int(input())
mi = lambda: map(int, input().split())
li = lambda: list(mi())
inf = 2 ** 63 - 1
mod = 998244353


n = ii()

a = li()

dp = Counter()

for v in a:
    dp[v] += 1
    dp[v] += dp[v - 1]
    dp[v] %= mod
ans = -n
for v, c in dp.items():
    ans += c
    ans %= mod
print(ans)
0