結果

問題 No.2055 12x34...
ユーザー simansiman
提出日時 2022-08-23 03:16:09
言語 Ruby
(3.3.0)
結果
AC  
実行時間 286 ms / 2,000 ms
コード長 212 bytes
コンパイル時間 366 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 35,328 KB
最終ジャッジ日時 2024-10-10 09:17:27
合計ジャッジ時間 11,893 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 91 ms
12,160 KB
testcase_01 AC 90 ms
12,288 KB
testcase_02 AC 131 ms
14,976 KB
testcase_03 AC 185 ms
19,328 KB
testcase_04 AC 212 ms
21,504 KB
testcase_05 AC 217 ms
22,144 KB
testcase_06 AC 207 ms
21,376 KB
testcase_07 AC 185 ms
19,584 KB
testcase_08 AC 161 ms
17,920 KB
testcase_09 AC 237 ms
23,424 KB
testcase_10 AC 247 ms
25,856 KB
testcase_11 AC 155 ms
17,408 KB
testcase_12 AC 195 ms
25,216 KB
testcase_13 AC 265 ms
33,280 KB
testcase_14 AC 168 ms
22,656 KB
testcase_15 AC 166 ms
22,016 KB
testcase_16 AC 268 ms
33,536 KB
testcase_17 AC 168 ms
18,944 KB
testcase_18 AC 230 ms
25,728 KB
testcase_19 AC 124 ms
14,720 KB
testcase_20 AC 108 ms
13,056 KB
testcase_21 AC 124 ms
14,848 KB
testcase_22 AC 280 ms
31,488 KB
testcase_23 AC 286 ms
32,128 KB
testcase_24 AC 284 ms
35,328 KB
testcase_25 AC 285 ms
35,200 KB
testcase_26 AC 286 ms
35,328 KB
testcase_27 AC 283 ms
35,200 KB
testcase_28 AC 285 ms
35,200 KB
testcase_29 AC 280 ms
35,200 KB
testcase_30 AC 285 ms
35,328 KB
testcase_31 AC 283 ms
35,200 KB
testcase_32 AC 284 ms
35,200 KB
testcase_33 AC 256 ms
25,088 KB
testcase_34 AC 258 ms
25,088 KB
testcase_35 AC 258 ms
25,088 KB
testcase_36 AC 256 ms
25,088 KB
testcase_37 AC 256 ms
25,088 KB
testcase_38 AC 255 ms
25,216 KB
testcase_39 AC 257 ms
25,216 KB
testcase_40 AC 258 ms
25,088 KB
testcase_41 AC 257 ms
25,088 KB
testcase_42 AC 257 ms
25,088 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

N = gets.to_i
A = gets.split.map(&:to_i)
MOD = 998_244_353

counter = Hash.new(0)
ans = 0

A.each do |a|
  ans += counter[a - 1]
  ans %= MOD

  counter[a] += counter[a - 1] + 1
  counter[a] %= MOD
end

puts ans
0