結果

問題 No.647 明太子
ユーザー maimai
提出日時 2018-02-09 22:31:41
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 282 bytes
コンパイル時間 77 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 12,928 KB
最終ジャッジ日時 2024-06-07 21:47:04
合計ジャッジ時間 5,882 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 81 ms
12,160 KB
testcase_01 AC 89 ms
12,416 KB
testcase_02 WA -
testcase_03 AC 82 ms
12,160 KB
testcase_04 AC 80 ms
12,288 KB
testcase_05 AC 82 ms
12,288 KB
testcase_06 AC 82 ms
12,032 KB
testcase_07 AC 79 ms
12,288 KB
testcase_08 AC 86 ms
12,160 KB
testcase_09 AC 96 ms
12,160 KB
testcase_10 AC 104 ms
12,160 KB
testcase_11 AC 91 ms
12,160 KB
testcase_12 AC 102 ms
12,288 KB
testcase_13 AC 122 ms
12,288 KB
testcase_14 AC 475 ms
12,672 KB
testcase_15 AC 144 ms
12,416 KB
testcase_16 AC 99 ms
12,288 KB
testcase_17 AC 576 ms
12,800 KB
testcase_18 AC 679 ms
12,800 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 879 ms
12,928 KB
testcase_23 AC 85 ms
12,288 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

def ascan;gets.split.map(&:to_i);end

n=gets.to_i
users = (0...n).map{ascan}
m=gets.to_i
mentai = (0...m).map{ascan}

cnts = []
mentai.map! do |me|
    x,y = me
    cnts << users.count{|a,b| x<=a && b<=y}
end

max_cnts = cnts.max

m.times do |i|
    p i+1 if cnts[i] == max_cnts
end
0