結果

問題 No.2055 12x34...
ユーザー rlangevinrlangevin
提出日時 2022-08-21 17:06:27
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 288 bytes
コンパイル時間 301 ms
コンパイル使用メモリ 82,436 KB
実行使用メモリ 257,536 KB
最終ジャッジ日時 2024-10-10 06:16:18
合計ジャッジ時間 7,381 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
60,896 KB
testcase_01 AC 44 ms
55,780 KB
testcase_02 AC 62 ms
77,192 KB
testcase_03 AC 84 ms
90,652 KB
testcase_04 AC 98 ms
97,804 KB
testcase_05 AC 100 ms
100,740 KB
testcase_06 AC 95 ms
97,692 KB
testcase_07 AC 86 ms
92,724 KB
testcase_08 AC 76 ms
86,964 KB
testcase_09 AC 103 ms
101,148 KB
testcase_10 AC 106 ms
104,236 KB
testcase_11 AC 75 ms
85,528 KB
testcase_12 AC 115 ms
126,100 KB
testcase_13 AC 157 ms
132,948 KB
testcase_14 AC 93 ms
102,588 KB
testcase_15 AC 90 ms
101,644 KB
testcase_16 AC 172 ms
155,736 KB
testcase_17 AC 1,437 ms
155,892 KB
testcase_18 TLE -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import *

def calc(A):
    D = defaultdict(int)
    mod = 998244353
    val = 0
    for i in range(N):
        v = D[A[i] - 1]
        D[A[i]] += v + 1
        val += v
        val %= mod
    return val

N = int(input())
A = list(map(int, input().split()))
print(calc(A))
0