結果

問題 No.2055 12x34...
ユーザー shirokumashirokuma
提出日時 2022-10-04 23:32:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 160 ms / 2,000 ms
コード長 229 bytes
コンパイル時間 298 ms
コンパイル使用メモリ 82,116 KB
実行使用メモリ 155,808 KB
最終ジャッジ日時 2024-06-09 17:53:45
合計ジャッジ時間 6,887 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,376 KB
testcase_01 AC 35 ms
53,376 KB
testcase_02 AC 67 ms
71,424 KB
testcase_03 AC 62 ms
85,376 KB
testcase_04 AC 68 ms
95,872 KB
testcase_05 AC 77 ms
100,608 KB
testcase_06 AC 69 ms
95,104 KB
testcase_07 AC 65 ms
88,064 KB
testcase_08 AC 57 ms
79,872 KB
testcase_09 AC 79 ms
100,864 KB
testcase_10 AC 82 ms
103,936 KB
testcase_11 AC 55 ms
77,952 KB
testcase_12 AC 111 ms
114,432 KB
testcase_13 AC 149 ms
133,172 KB
testcase_14 AC 84 ms
102,784 KB
testcase_15 AC 86 ms
102,912 KB
testcase_16 AC 160 ms
155,808 KB
testcase_17 AC 69 ms
89,984 KB
testcase_18 AC 89 ms
101,120 KB
testcase_19 AC 51 ms
73,472 KB
testcase_20 AC 46 ms
66,816 KB
testcase_21 AC 55 ms
73,600 KB
testcase_22 AC 113 ms
109,644 KB
testcase_23 AC 108 ms
107,008 KB
testcase_24 AC 117 ms
110,040 KB
testcase_25 AC 113 ms
106,944 KB
testcase_26 AC 112 ms
106,880 KB
testcase_27 AC 116 ms
110,124 KB
testcase_28 AC 115 ms
106,880 KB
testcase_29 AC 120 ms
110,000 KB
testcase_30 AC 118 ms
106,948 KB
testcase_31 AC 113 ms
106,752 KB
testcase_32 AC 113 ms
106,936 KB
testcase_33 AC 85 ms
105,600 KB
testcase_34 AC 85 ms
105,740 KB
testcase_35 AC 84 ms
105,480 KB
testcase_36 AC 85 ms
105,472 KB
testcase_37 AC 85 ms
105,344 KB
testcase_38 AC 85 ms
105,600 KB
testcase_39 AC 86 ms
105,472 KB
testcase_40 AC 84 ms
105,600 KB
testcase_41 AC 85 ms
105,688 KB
testcase_42 AC 87 ms
105,508 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#yuki2055

from collections import defaultdict

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

dp = defaultdict(int)

for a in A:
    dp[a] += dp[a-1] + 1
    dp[a] %= mod

print((sum(dp.values()) - N)%mod)
0