結果

問題 No.2055 12x34...
ユーザー dangodango
提出日時 2023-06-14 19:33:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 143 ms / 2,000 ms
コード長 197 bytes
コンパイル時間 297 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 119,168 KB
最終ジャッジ日時 2024-06-23 02:35:58
合計ジャッジ時間 6,597 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,712 KB
testcase_01 AC 39 ms
52,096 KB
testcase_02 AC 53 ms
70,272 KB
testcase_03 AC 67 ms
83,072 KB
testcase_04 AC 84 ms
92,544 KB
testcase_05 AC 79 ms
96,128 KB
testcase_06 AC 79 ms
92,188 KB
testcase_07 AC 75 ms
85,376 KB
testcase_08 AC 61 ms
77,824 KB
testcase_09 AC 89 ms
97,408 KB
testcase_10 AC 91 ms
101,504 KB
testcase_11 AC 60 ms
76,160 KB
testcase_12 AC 89 ms
105,856 KB
testcase_13 AC 129 ms
104,448 KB
testcase_14 AC 78 ms
89,856 KB
testcase_15 AC 79 ms
90,112 KB
testcase_16 AC 143 ms
106,112 KB
testcase_17 AC 68 ms
86,400 KB
testcase_18 AC 93 ms
101,248 KB
testcase_19 AC 53 ms
70,912 KB
testcase_20 AC 47 ms
64,384 KB
testcase_21 AC 53 ms
71,040 KB
testcase_22 AC 117 ms
109,128 KB
testcase_23 AC 113 ms
108,776 KB
testcase_24 AC 122 ms
118,920 KB
testcase_25 AC 113 ms
112,640 KB
testcase_26 AC 118 ms
119,040 KB
testcase_27 AC 126 ms
119,168 KB
testcase_28 AC 126 ms
119,040 KB
testcase_29 AC 128 ms
115,328 KB
testcase_30 AC 117 ms
118,656 KB
testcase_31 AC 118 ms
119,040 KB
testcase_32 AC 116 ms
119,040 KB
testcase_33 AC 105 ms
104,960 KB
testcase_34 AC 90 ms
103,808 KB
testcase_35 AC 95 ms
105,216 KB
testcase_36 AC 93 ms
103,680 KB
testcase_37 AC 86 ms
103,792 KB
testcase_38 AC 93 ms
105,216 KB
testcase_39 AC 86 ms
103,880 KB
testcase_40 AC 90 ms
103,808 KB
testcase_41 AC 91 ms
103,896 KB
testcase_42 AC 88 ms
103,704 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

input()
A = list(map(int,input().split()))
ans = 0
dic = {}
for a in A:
    ans += dic.get(a - 1, 0)
    ans %= 998244353
    dic[a] = (dic.get(a, 0) + dic.get(a - 1, 0) + 1) % 998244353
print(ans)
0