結果

問題 No.2055 12x34...
ユーザー gr1msl3ygr1msl3y
提出日時 2022-08-24 23:13:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 133 ms / 2,000 ms
コード長 340 bytes
コンパイル時間 300 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 126,848 KB
最終ジャッジ日時 2024-10-12 07:19:18
合計ジャッジ時間 7,149 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,712 KB
testcase_01 AC 38 ms
51,968 KB
testcase_02 AC 59 ms
70,144 KB
testcase_03 AC 67 ms
83,968 KB
testcase_04 AC 76 ms
94,208 KB
testcase_05 AC 81 ms
97,792 KB
testcase_06 AC 76 ms
93,696 KB
testcase_07 AC 70 ms
86,272 KB
testcase_08 AC 63 ms
78,592 KB
testcase_09 AC 86 ms
100,480 KB
testcase_10 AC 90 ms
103,680 KB
testcase_11 AC 61 ms
76,672 KB
testcase_12 AC 92 ms
103,424 KB
testcase_13 AC 130 ms
126,848 KB
testcase_14 AC 76 ms
87,808 KB
testcase_15 AC 76 ms
88,064 KB
testcase_16 AC 133 ms
105,672 KB
testcase_17 AC 73 ms
87,936 KB
testcase_18 AC 97 ms
100,864 KB
testcase_19 AC 56 ms
71,552 KB
testcase_20 AC 49 ms
65,664 KB
testcase_21 AC 57 ms
71,680 KB
testcase_22 AC 121 ms
109,160 KB
testcase_23 AC 120 ms
108,532 KB
testcase_24 AC 130 ms
118,656 KB
testcase_25 AC 122 ms
112,640 KB
testcase_26 AC 125 ms
118,528 KB
testcase_27 AC 130 ms
118,912 KB
testcase_28 AC 125 ms
120,192 KB
testcase_29 AC 130 ms
115,200 KB
testcase_30 AC 123 ms
118,400 KB
testcase_31 AC 124 ms
120,192 KB
testcase_32 AC 125 ms
120,320 KB
testcase_33 AC 98 ms
104,832 KB
testcase_34 AC 94 ms
104,952 KB
testcase_35 AC 98 ms
104,832 KB
testcase_36 AC 94 ms
104,832 KB
testcase_37 AC 94 ms
104,832 KB
testcase_38 AC 97 ms
104,832 KB
testcase_39 AC 94 ms
104,960 KB
testcase_40 AC 93 ms
104,576 KB
testcase_41 AC 93 ms
105,088 KB
testcase_42 AC 94 ms
104,704 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

dp = {}
for a in A:
    if a in dp:
        dp[a] = (dp[a]+1) % MOD
    else:
        dp[a] = 1
    # if a+1 in dp:
    #     dp[a]=(dp[a+1]+dp[a])%MOD
    if a-1 in dp:
        dp[a] = (dp[a-1]+dp[a]) % MOD

ans = -N
for k in dp:
    ans = (ans+dp[k]) % MOD
print(ans)
0