結果

問題 No.2055 12x34...
ユーザー shotoyooshotoyoo
提出日時 2022-08-21 13:24:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 167 ms / 2,000 ms
コード長 804 bytes
コンパイル時間 178 ms
コンパイル使用メモリ 82,188 KB
実行使用メモリ 124,884 KB
最終ジャッジ日時 2024-10-10 06:04:55
合計ジャッジ時間 6,649 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
54,272 KB
testcase_01 AC 47 ms
53,888 KB
testcase_02 AC 66 ms
72,960 KB
testcase_03 AC 82 ms
86,784 KB
testcase_04 AC 98 ms
98,376 KB
testcase_05 AC 104 ms
101,128 KB
testcase_06 AC 92 ms
96,616 KB
testcase_07 AC 87 ms
89,344 KB
testcase_08 AC 78 ms
81,664 KB
testcase_09 AC 107 ms
101,372 KB
testcase_10 AC 111 ms
104,740 KB
testcase_11 AC 76 ms
79,360 KB
testcase_12 AC 119 ms
107,128 KB
testcase_13 AC 151 ms
104,660 KB
testcase_14 AC 94 ms
93,184 KB
testcase_15 AC 95 ms
93,184 KB
testcase_16 AC 167 ms
124,884 KB
testcase_17 AC 91 ms
90,632 KB
testcase_18 AC 119 ms
101,636 KB
testcase_19 AC 72 ms
74,496 KB
testcase_20 AC 62 ms
67,840 KB
testcase_21 AC 71 ms
74,624 KB
testcase_22 AC 143 ms
109,896 KB
testcase_23 AC 142 ms
107,120 KB
testcase_24 AC 153 ms
110,372 KB
testcase_25 AC 147 ms
107,228 KB
testcase_26 AC 145 ms
107,228 KB
testcase_27 AC 151 ms
110,300 KB
testcase_28 AC 146 ms
107,228 KB
testcase_29 AC 152 ms
110,148 KB
testcase_30 AC 144 ms
107,424 KB
testcase_31 AC 144 ms
107,088 KB
testcase_32 AC 145 ms
107,292 KB
testcase_33 AC 120 ms
105,768 KB
testcase_34 AC 116 ms
105,836 KB
testcase_35 AC 116 ms
105,940 KB
testcase_36 AC 115 ms
105,764 KB
testcase_37 AC 114 ms
105,620 KB
testcase_38 AC 119 ms
105,780 KB
testcase_39 AC 114 ms
105,916 KB
testcase_40 AC 114 ms
105,688 KB
testcase_41 AC 114 ms
105,900 KB
testcase_42 AC 113 ms
105,724 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys, random
input = lambda : sys.stdin.readline().rstrip()


write = lambda x: sys.stdout.write(x+"\n"); writef = lambda x: print("{:.12f}".format(x))
debug = lambda x: sys.stderr.write(x+"\n")
YES="Yes"; NO="No"; pans = lambda v: print(YES if v else NO); INF=10**18
LI = lambda : list(map(int, input().split())); II=lambda : int(input())
def debug(_l_):
    for s in _l_.split():
        print(f"{s}={eval(s)}", end=" ")
    print()
def dlist(*l, fill=0):
    if len(l)==1:
        return [fill]*l[0]
    ll = l[1:]
    return [dlist(*ll, fill=fill) for _ in range(l[0])]

n = int(input())
a = list(map(int, input().split()))
M = 998244353
d = {}
for v in a:
    d.setdefault(v,0)
    d[v] += 1 + d.get(v-1,0)
    d[v] %= M
ans = 0
for k,v in d.items():
    ans += v
    ans %= M
print((ans-n)%M)
0