結果

問題 No.2055 12x34...
ユーザー tomeruntomerun
提出日時 2022-08-21 13:01:02
言語 Crystal
(1.11.2)
結果
AC  
実行時間 65 ms / 2,000 ms
コード長 237 bytes
コンパイル時間 11,355 ms
コンパイル使用メモリ 297,168 KB
実行使用メモリ 34,684 KB
最終ジャッジ日時 2024-10-10 05:59:07
合計ジャッジ時間 14,353 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 9 ms
6,820 KB
testcase_03 AC 19 ms
7,808 KB
testcase_04 AC 26 ms
9,216 KB
testcase_05 AC 28 ms
10,752 KB
testcase_06 AC 24 ms
9,088 KB
testcase_07 AC 20 ms
7,936 KB
testcase_08 AC 15 ms
6,820 KB
testcase_09 AC 30 ms
11,448 KB
testcase_10 AC 31 ms
12,564 KB
testcase_11 AC 14 ms
6,816 KB
testcase_12 AC 38 ms
20,228 KB
testcase_13 AC 62 ms
34,328 KB
testcase_14 AC 29 ms
19,472 KB
testcase_15 AC 30 ms
20,352 KB
testcase_16 AC 65 ms
34,684 KB
testcase_17 AC 19 ms
8,960 KB
testcase_18 AC 32 ms
12,532 KB
testcase_19 AC 9 ms
6,820 KB
testcase_20 AC 5 ms
6,816 KB
testcase_21 AC 9 ms
6,820 KB
testcase_22 AC 44 ms
17,084 KB
testcase_23 AC 47 ms
17,124 KB
testcase_24 AC 46 ms
21,688 KB
testcase_25 AC 49 ms
21,268 KB
testcase_26 AC 48 ms
21,856 KB
testcase_27 AC 50 ms
23,524 KB
testcase_28 AC 49 ms
21,792 KB
testcase_29 AC 49 ms
21,364 KB
testcase_30 AC 49 ms
22,904 KB
testcase_31 AC 48 ms
21,456 KB
testcase_32 AC 50 ms
22,628 KB
testcase_33 AC 34 ms
16,264 KB
testcase_34 AC 36 ms
17,036 KB
testcase_35 AC 35 ms
16,140 KB
testcase_36 AC 35 ms
16,524 KB
testcase_37 AC 35 ms
16,780 KB
testcase_38 AC 36 ms
16,648 KB
testcase_39 AC 36 ms
17,544 KB
testcase_40 AC 37 ms
17,420 KB
testcase_41 AC 35 ms
16,528 KB
testcase_42 AC 36 ms
15,924 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 998244353i64
n = read_line.to_i
a = read_line.split.map(&.to_i)
count = Hash(Int32, Int64).new { |h, k| h[k] = 0i64 }
n.times do |i|
  v = a[i]
  count[v] = (count[v] + count[v - 1] + 1) % MOD
end
puts (count.values.sum - n) % MOD
0