結果

問題 No.2055 12x34...
ユーザー rlangevinrlangevin
提出日時 2022-08-21 17:06:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 193 ms / 2,000 ms
コード長 311 bytes
コンパイル時間 176 ms
コンパイル使用メモリ 81,900 KB
実行使用メモリ 155,344 KB
最終ジャッジ日時 2024-10-10 06:16:27
合計ジャッジ時間 6,204 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
55,436 KB
testcase_01 AC 45 ms
54,228 KB
testcase_02 AC 60 ms
71,548 KB
testcase_03 AC 74 ms
85,728 KB
testcase_04 AC 85 ms
95,692 KB
testcase_05 AC 93 ms
100,572 KB
testcase_06 AC 82 ms
95,068 KB
testcase_07 AC 78 ms
88,668 KB
testcase_08 AC 68 ms
80,556 KB
testcase_09 AC 95 ms
100,620 KB
testcase_10 AC 98 ms
103,912 KB
testcase_11 AC 64 ms
78,576 KB
testcase_12 AC 131 ms
114,568 KB
testcase_13 AC 173 ms
132,896 KB
testcase_14 AC 95 ms
103,624 KB
testcase_15 AC 96 ms
102,904 KB
testcase_16 AC 193 ms
155,344 KB
testcase_17 AC 78 ms
89,860 KB
testcase_18 AC 106 ms
100,972 KB
testcase_19 AC 61 ms
73,404 KB
testcase_20 AC 54 ms
67,600 KB
testcase_21 AC 61 ms
75,472 KB
testcase_22 AC 131 ms
109,408 KB
testcase_23 AC 128 ms
106,616 KB
testcase_24 AC 139 ms
109,868 KB
testcase_25 AC 133 ms
106,904 KB
testcase_26 AC 131 ms
106,552 KB
testcase_27 AC 138 ms
110,068 KB
testcase_28 AC 139 ms
106,812 KB
testcase_29 AC 140 ms
109,992 KB
testcase_30 AC 132 ms
106,744 KB
testcase_31 AC 133 ms
106,848 KB
testcase_32 AC 133 ms
106,720 KB
testcase_33 AC 105 ms
105,556 KB
testcase_34 AC 104 ms
105,344 KB
testcase_35 AC 106 ms
105,524 KB
testcase_36 AC 107 ms
105,408 KB
testcase_37 AC 107 ms
105,560 KB
testcase_38 AC 105 ms
105,692 KB
testcase_39 AC 105 ms
105,720 KB
testcase_40 AC 103 ms
105,496 KB
testcase_41 AC 105 ms
105,412 KB
testcase_42 AC 104 ms
105,204 KB
権限があれば一括ダウンロードができます

ソースコード

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
        D[A[i]] %= mod
        val += v
        val %= mod
    return val

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