結果

問題 No.2055 12x34...
ユーザー roarisroaris
提出日時 2022-08-23 06:43:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 165 ms / 2,000 ms
コード長 250 bytes
コンパイル時間 359 ms
コンパイル使用メモリ 82,496 KB
実行使用メモリ 155,544 KB
最終ジャッジ日時 2024-10-10 13:29:31
合計ジャッジ時間 7,297 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,248 KB
testcase_01 AC 43 ms
53,504 KB
testcase_02 AC 53 ms
71,680 KB
testcase_03 AC 65 ms
85,120 KB
testcase_04 AC 76 ms
95,360 KB
testcase_05 AC 83 ms
100,352 KB
testcase_06 AC 77 ms
95,104 KB
testcase_07 AC 69 ms
87,808 KB
testcase_08 AC 61 ms
79,744 KB
testcase_09 AC 83 ms
100,480 KB
testcase_10 AC 89 ms
103,680 KB
testcase_11 AC 60 ms
78,208 KB
testcase_12 AC 119 ms
113,664 KB
testcase_13 AC 153 ms
133,184 KB
testcase_14 AC 92 ms
102,016 KB
testcase_15 AC 90 ms
102,272 KB
testcase_16 AC 165 ms
155,544 KB
testcase_17 AC 72 ms
89,216 KB
testcase_18 AC 97 ms
99,724 KB
testcase_19 AC 59 ms
73,344 KB
testcase_20 AC 52 ms
66,816 KB
testcase_21 AC 58 ms
73,344 KB
testcase_22 AC 119 ms
109,664 KB
testcase_23 AC 120 ms
105,728 KB
testcase_24 AC 130 ms
110,028 KB
testcase_25 AC 125 ms
105,728 KB
testcase_26 AC 125 ms
105,344 KB
testcase_27 AC 130 ms
109,868 KB
testcase_28 AC 124 ms
105,772 KB
testcase_29 AC 128 ms
110,096 KB
testcase_30 AC 124 ms
105,872 KB
testcase_31 AC 125 ms
105,908 KB
testcase_32 AC 125 ms
105,600 KB
testcase_33 AC 96 ms
104,704 KB
testcase_34 AC 94 ms
104,676 KB
testcase_35 AC 97 ms
104,728 KB
testcase_36 AC 94 ms
104,704 KB
testcase_37 AC 94 ms
104,728 KB
testcase_38 AC 96 ms
104,776 KB
testcase_39 AC 96 ms
104,708 KB
testcase_40 AC 96 ms
104,832 KB
testcase_41 AC 95 ms
104,576 KB
testcase_42 AC 94 ms
104,704 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from collections import *

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

for Ai in A:
    d[Ai] += 1+d[Ai-1]
    d[Ai] %= MOD

ans = (sum(d.values())-N)%MOD
print(ans)
0