結果

問題 No.2433 Min Increasing Sequence
ユーザー tomeruntomerun
提出日時 2023-08-18 23:12:45
言語 Crystal
(1.11.2)
結果
AC  
実行時間 32 ms / 2,000 ms
コード長 340 bytes
コンパイル時間 15,470 ms
コンパイル使用メモリ 293,156 KB
実行使用メモリ 20,352 KB
最終ジャッジ日時 2024-11-28 09:57:03
合計ジャッジ時間 15,383 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,820 KB
testcase_01 AC 1 ms
6,816 KB
testcase_02 AC 1 ms
6,816 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 32 ms
20,352 KB
testcase_05 AC 16 ms
9,984 KB
testcase_06 AC 25 ms
16,244 KB
testcase_07 AC 17 ms
11,916 KB
testcase_08 AC 26 ms
17,116 KB
testcase_09 AC 21 ms
15,248 KB
testcase_10 AC 13 ms
8,704 KB
testcase_11 AC 18 ms
9,984 KB
testcase_12 AC 11 ms
7,296 KB
testcase_13 AC 9 ms
6,816 KB
testcase_14 AC 23 ms
14,348 KB
testcase_15 AC 10 ms
6,816 KB
testcase_16 AC 12 ms
8,448 KB
testcase_17 AC 9 ms
6,820 KB
testcase_18 AC 29 ms
17,240 KB
testcase_19 AC 29 ms
17,188 KB
testcase_20 AC 4 ms
6,816 KB
testcase_21 AC 25 ms
15,708 KB
testcase_22 AC 28 ms
17,116 KB
testcase_23 AC 26 ms
16,348 KB
testcase_24 AC 29 ms
17,220 KB
testcase_25 AC 27 ms
16,856 KB
testcase_26 AC 22 ms
14,460 KB
testcase_27 AC 26 ms
15,712 KB
testcase_28 AC 24 ms
15,912 KB
testcase_29 AC 7 ms
6,816 KB
testcase_30 AC 6 ms
6,816 KB
testcase_31 AC 5 ms
6,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 998244353i64
n = read_line.to_i
a = read_line.split.map(&.to_i)
cnt = Array.new(n + 1, 0i64)
sum = Array.new(n + 1, 0i64)
cnt[n] = 1
sum[n] = 1
min = a[-1]
min_pos = n - 1
(n - 1).downto(0) do |i|
  if a[i] <= min
    min = a[i]
    min_pos = i
  end
  cnt[i] = sum[min_pos + 1]
  sum[i] = (sum[i + 1] + cnt[i]) % MOD
end
puts cnt[0]
0