結果

問題 No.2154 あさかつの参加人数
ユーザー simansiman
提出日時 2022-12-11 18:04:34
言語 Ruby
(3.3.0)
結果
AC  
実行時間 1,198 ms / 2,000 ms
コード長 223 bytes
コンパイル時間 61 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 20,224 KB
最終ジャッジ日時 2024-10-15 14:26:22
合計ジャッジ時間 26,702 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,173 ms
20,096 KB
testcase_01 AC 1,198 ms
20,224 KB
testcase_02 AC 1,168 ms
20,096 KB
testcase_03 AC 1,152 ms
19,968 KB
testcase_04 AC 1,150 ms
20,096 KB
testcase_05 AC 528 ms
12,160 KB
testcase_06 AC 830 ms
15,488 KB
testcase_07 AC 622 ms
17,152 KB
testcase_08 AC 626 ms
17,920 KB
testcase_09 AC 299 ms
16,256 KB
testcase_10 AC 561 ms
16,896 KB
testcase_11 AC 992 ms
19,328 KB
testcase_12 AC 765 ms
16,768 KB
testcase_13 AC 468 ms
13,824 KB
testcase_14 AC 847 ms
16,512 KB
testcase_15 AC 571 ms
17,664 KB
testcase_16 AC 800 ms
17,408 KB
testcase_17 AC 877 ms
16,384 KB
testcase_18 AC 966 ms
17,920 KB
testcase_19 AC 143 ms
12,928 KB
testcase_20 AC 806 ms
18,176 KB
testcase_21 AC 271 ms
16,000 KB
testcase_22 AC 448 ms
19,584 KB
testcase_23 AC 930 ms
18,048 KB
testcase_24 AC 1,018 ms
19,200 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

N, M = gets.split.map(&:to_i)

rui = Array.new(N + 2, 0)

M.times do
  l, r = gets.split.map(&:to_i)

  rui[l + 1] -= 1
  rui[r] += 1
end

sum = 0
1.upto(N) do |d|
  sum += rui[d]
  rui[d] = sum
end

puts rui[1..N].reverse
0