結果

問題 No.647 明太子
ユーザー cielciel
提出日時 2018-01-30 23:15:30
言語 Ruby
(3.3.0)
結果
AC  
実行時間 934 ms / 4,500 ms
コード長 205 bytes
コンパイル時間 46 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 12,928 KB
最終ジャッジ日時 2024-06-27 02:27:01
合計ジャッジ時間 6,123 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 92 ms
12,160 KB
testcase_01 AC 89 ms
12,288 KB
testcase_02 AC 85 ms
12,160 KB
testcase_03 AC 85 ms
12,160 KB
testcase_04 AC 85 ms
12,288 KB
testcase_05 AC 86 ms
12,288 KB
testcase_06 AC 85 ms
12,288 KB
testcase_07 AC 87 ms
12,288 KB
testcase_08 AC 85 ms
12,160 KB
testcase_09 AC 97 ms
12,416 KB
testcase_10 AC 108 ms
12,160 KB
testcase_11 AC 90 ms
12,288 KB
testcase_12 AC 103 ms
12,288 KB
testcase_13 AC 125 ms
12,416 KB
testcase_14 AC 505 ms
12,928 KB
testcase_15 AC 144 ms
12,416 KB
testcase_16 AC 102 ms
12,288 KB
testcase_17 AC 609 ms
12,672 KB
testcase_18 AC 658 ms
12,800 KB
testcase_19 AC 302 ms
12,672 KB
testcase_20 AC 317 ms
12,544 KB
testcase_21 AC 167 ms
12,416 KB
testcase_22 AC 934 ms
12,928 KB
testcase_23 AC 87 ms
12,288 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:10: warning: `*' interpreted as argument prefix
Syntax OK

ソースコード

diff #

a=gets.to_i.times.map{gets.split.map &:to_i}
b=gets.to_i.times.map{
	x,y=gets.split.map &:to_i
	a.count{|x0,y0|x0>=x&&y0<=y}
}
if b.all?{|e|e==0}
	p 0
else
	m=b.max
	p *(1..b.size).select{|i|b[i-1]==m}
end
0