結果

問題 No.1557 Binary Variable
ユーザー 小野寺健小野寺健
提出日時 2021-10-31 12:22:08
言語 Ruby
(3.3.0)
結果
AC  
実行時間 1,113 ms / 2,000 ms
コード長 242 bytes
コンパイル時間 263 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 30,080 KB
最終ジャッジ日時 2024-10-08 16:18:51
合計ジャッジ時間 39,376 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,035 ms
30,080 KB
testcase_01 AC 1,113 ms
27,904 KB
testcase_02 AC 91 ms
12,032 KB
testcase_03 AC 91 ms
12,032 KB
testcase_04 AC 1,075 ms
30,080 KB
testcase_05 AC 1,087 ms
30,080 KB
testcase_06 AC 1,083 ms
29,824 KB
testcase_07 AC 1,069 ms
30,080 KB
testcase_08 AC 1,068 ms
30,080 KB
testcase_09 AC 1,068 ms
29,952 KB
testcase_10 AC 1,044 ms
30,080 KB
testcase_11 AC 1,052 ms
29,952 KB
testcase_12 AC 1,082 ms
30,080 KB
testcase_13 AC 1,060 ms
30,080 KB
testcase_14 AC 1,046 ms
29,952 KB
testcase_15 AC 1,054 ms
30,080 KB
testcase_16 AC 1,047 ms
30,080 KB
testcase_17 AC 1,056 ms
29,952 KB
testcase_18 AC 1,060 ms
29,824 KB
testcase_19 AC 1,089 ms
27,648 KB
testcase_20 AC 1,064 ms
27,904 KB
testcase_21 AC 1,070 ms
28,032 KB
testcase_22 AC 1,075 ms
27,648 KB
testcase_23 AC 1,092 ms
27,904 KB
testcase_24 AC 1,080 ms
27,520 KB
testcase_25 AC 1,067 ms
27,520 KB
testcase_26 AC 1,069 ms
27,520 KB
testcase_27 AC 1,052 ms
27,648 KB
testcase_28 AC 1,082 ms
27,648 KB
testcase_29 AC 1,059 ms
27,648 KB
testcase_30 AC 1,063 ms
27,648 KB
testcase_31 AC 1,067 ms
27,648 KB
testcase_32 AC 1,066 ms
27,392 KB
testcase_33 AC 1,066 ms
27,776 KB
testcase_34 AC 89 ms
12,032 KB
testcase_35 AC 92 ms
12,160 KB
testcase_36 AC 92 ms
12,160 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

N, M = gets.split(" ").map{|s| s.to_i}

lr = []
M.times {
	lr << gets.split(" ").map{|s| s.to_i}
}

lr.sort!

maxr = -Float::INFINITY
cnt = N

lr.each {|l, r|
	if l > maxr then
		cnt -= 1
		maxr = r
	elsif r < maxr
		maxr = r
	end
}

puts cnt
0