結果

問題 No.2055 12x34...
ユーザー gemmarogemmaro
提出日時 2022-08-21 16:00:08
言語 Ruby
(3.3.0)
結果
AC  
実行時間 262 ms / 2,000 ms
コード長 233 bytes
コンパイル時間 191 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 35,328 KB
最終ジャッジ日時 2024-10-10 06:13:58
合計ジャッジ時間 10,051 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 87 ms
12,160 KB
testcase_01 AC 88 ms
12,160 KB
testcase_02 AC 113 ms
15,104 KB
testcase_03 AC 155 ms
19,200 KB
testcase_04 AC 178 ms
21,632 KB
testcase_05 AC 187 ms
22,144 KB
testcase_06 AC 175 ms
21,248 KB
testcase_07 AC 160 ms
19,456 KB
testcase_08 AC 136 ms
17,536 KB
testcase_09 AC 199 ms
23,424 KB
testcase_10 AC 208 ms
25,728 KB
testcase_11 AC 134 ms
17,152 KB
testcase_12 AC 174 ms
25,344 KB
testcase_13 AC 221 ms
33,152 KB
testcase_14 AC 146 ms
22,528 KB
testcase_15 AC 146 ms
22,144 KB
testcase_16 AC 232 ms
33,664 KB
testcase_17 AC 148 ms
19,072 KB
testcase_18 AC 192 ms
25,728 KB
testcase_19 AC 108 ms
14,592 KB
testcase_20 AC 97 ms
13,056 KB
testcase_21 AC 109 ms
14,976 KB
testcase_22 AC 232 ms
31,616 KB
testcase_23 AC 232 ms
32,256 KB
testcase_24 AC 236 ms
35,072 KB
testcase_25 AC 236 ms
35,200 KB
testcase_26 AC 262 ms
35,200 KB
testcase_27 AC 236 ms
35,200 KB
testcase_28 AC 241 ms
35,200 KB
testcase_29 AC 241 ms
35,200 KB
testcase_30 AC 242 ms
35,328 KB
testcase_31 AC 241 ms
35,200 KB
testcase_32 AC 245 ms
35,328 KB
testcase_33 AC 218 ms
25,216 KB
testcase_34 AC 213 ms
24,960 KB
testcase_35 AC 209 ms
24,960 KB
testcase_36 AC 215 ms
24,960 KB
testcase_37 AC 218 ms
25,216 KB
testcase_38 AC 211 ms
25,088 KB
testcase_39 AC 213 ms
25,088 KB
testcase_40 AC 211 ms
25,216 KB
testcase_41 AC 211 ms
25,088 KB
testcase_42 AC 211 ms
25,088 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

N = gets.to_i
A = gets.split.map { _1.to_i }
M = 998244353
C = Hash.new(0)
A.each do |a|
  C[a] = (C[a] + (a.zero? ? 0 : C[a - 1]) + 1) % M
end
((C.values.sum - N) % M).tap { puts(_1) }
# ref: https://yukicoder.me/submissions/791136
0