結果

問題 No.1557 Binary Variable
ユーザー simansiman
提出日時 2021-07-04 18:47:44
言語 Ruby
(3.3.0)
結果
AC  
実行時間 670 ms / 2,000 ms
コード長 197 bytes
コンパイル時間 44 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 31,384 KB
最終ジャッジ日時 2024-07-01 08:40:34
合計ジャッジ時間 25,063 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 589 ms
30,848 KB
testcase_01 AC 605 ms
30,508 KB
testcase_02 AC 90 ms
12,288 KB
testcase_03 AC 88 ms
12,160 KB
testcase_04 AC 605 ms
30,848 KB
testcase_05 AC 618 ms
30,976 KB
testcase_06 AC 614 ms
30,848 KB
testcase_07 AC 615 ms
30,976 KB
testcase_08 AC 622 ms
30,720 KB
testcase_09 AC 626 ms
30,848 KB
testcase_10 AC 619 ms
30,848 KB
testcase_11 AC 625 ms
30,848 KB
testcase_12 AC 617 ms
30,848 KB
testcase_13 AC 627 ms
30,848 KB
testcase_14 AC 633 ms
30,720 KB
testcase_15 AC 636 ms
30,976 KB
testcase_16 AC 635 ms
30,976 KB
testcase_17 AC 632 ms
30,976 KB
testcase_18 AC 631 ms
30,848 KB
testcase_19 AC 646 ms
30,420 KB
testcase_20 AC 650 ms
30,000 KB
testcase_21 AC 661 ms
31,112 KB
testcase_22 AC 662 ms
31,384 KB
testcase_23 AC 649 ms
30,492 KB
testcase_24 AC 662 ms
29,436 KB
testcase_25 AC 670 ms
29,484 KB
testcase_26 AC 648 ms
26,496 KB
testcase_27 AC 641 ms
26,624 KB
testcase_28 AC 663 ms
29,576 KB
testcase_29 AC 657 ms
29,800 KB
testcase_30 AC 663 ms
30,280 KB
testcase_31 AC 664 ms
29,828 KB
testcase_32 AC 665 ms
29,576 KB
testcase_33 AC 650 ms
30,496 KB
testcase_34 AC 90 ms
12,288 KB
testcase_35 AC 90 ms
12,160 KB
testcase_36 AC 89 ms
12,160 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

N, M = gets.split.map(&:to_i)
Q = M.times.map { gets.split.map(&:to_i) }.sort_by { |s, t| t }
ans = N
last = -1

Q.each do |s, t|
  next if (s..t).cover?(last)

  last = t
  ans -= 1
end

puts ans
0