結果

問題 No.2055 12x34...
ユーザー 👑 rin204rin204
提出日時 2022-08-23 14:58:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 123 ms / 2,000 ms
コード長 208 bytes
コンパイル時間 291 ms
コンパイル使用メモリ 82,044 KB
実行使用メモリ 120,320 KB
最終ジャッジ日時 2024-10-10 22:48:30
合計ジャッジ時間 5,731 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,456 KB
testcase_01 AC 41 ms
51,584 KB
testcase_02 AC 52 ms
69,632 KB
testcase_03 AC 65 ms
82,432 KB
testcase_04 AC 73 ms
92,160 KB
testcase_05 AC 77 ms
95,616 KB
testcase_06 AC 73 ms
91,904 KB
testcase_07 AC 68 ms
84,992 KB
testcase_08 AC 61 ms
77,440 KB
testcase_09 AC 78 ms
96,768 KB
testcase_10 AC 80 ms
101,120 KB
testcase_11 AC 59 ms
75,520 KB
testcase_12 AC 90 ms
105,344 KB
testcase_13 AC 119 ms
104,192 KB
testcase_14 AC 73 ms
89,472 KB
testcase_15 AC 72 ms
89,600 KB
testcase_16 AC 123 ms
105,876 KB
testcase_17 AC 67 ms
86,144 KB
testcase_18 AC 90 ms
101,376 KB
testcase_19 AC 50 ms
70,272 KB
testcase_20 AC 47 ms
64,512 KB
testcase_21 AC 53 ms
70,400 KB
testcase_22 AC 111 ms
109,072 KB
testcase_23 AC 106 ms
108,672 KB
testcase_24 AC 118 ms
118,784 KB
testcase_25 AC 110 ms
112,256 KB
testcase_26 AC 113 ms
118,656 KB
testcase_27 AC 118 ms
118,784 KB
testcase_28 AC 117 ms
120,320 KB
testcase_29 AC 119 ms
115,072 KB
testcase_30 AC 115 ms
118,528 KB
testcase_31 AC 115 ms
120,320 KB
testcase_32 AC 111 ms
120,320 KB
testcase_33 AC 92 ms
104,704 KB
testcase_34 AC 83 ms
103,808 KB
testcase_35 AC 92 ms
104,832 KB
testcase_36 AC 85 ms
103,424 KB
testcase_37 AC 86 ms
103,424 KB
testcase_38 AC 94 ms
104,704 KB
testcase_39 AC 85 ms
103,296 KB
testcase_40 AC 83 ms
103,296 KB
testcase_41 AC 84 ms
103,424 KB
testcase_42 AC 82 ms
103,296 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 998244353

n = int(input())
A = list(map(int, input().split()))
dp = {}
ans = 0
for a in A:
    x = dp.get(a - 1, 0)
    ans += x
    ans %= MOD
    dp[a] = (dp.get(a, 0) + x + 1) % MOD
print(ans % MOD)
0