結果

問題 No.647 明太子
ユーザー 👑 hos.lyrichos.lyric
提出日時 2020-03-31 10:14:41
言語 Ruby
(3.3.0)
結果
AC  
実行時間 1,667 ms / 4,500 ms
コード長 307 bytes
コンパイル時間 141 ms
コンパイル使用メモリ 7,680 KB
実行使用メモリ 78,976 KB
最終ジャッジ日時 2024-06-24 00:32:42
合計ジャッジ時間 8,991 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 96 ms
12,416 KB
testcase_01 AC 90 ms
12,288 KB
testcase_02 AC 89 ms
12,288 KB
testcase_03 AC 89 ms
12,416 KB
testcase_04 AC 89 ms
12,416 KB
testcase_05 AC 89 ms
12,288 KB
testcase_06 AC 86 ms
12,160 KB
testcase_07 AC 87 ms
12,288 KB
testcase_08 AC 87 ms
12,160 KB
testcase_09 AC 109 ms
12,800 KB
testcase_10 AC 130 ms
14,464 KB
testcase_11 AC 100 ms
12,416 KB
testcase_12 AC 120 ms
13,696 KB
testcase_13 AC 161 ms
16,512 KB
testcase_14 AC 829 ms
38,692 KB
testcase_15 AC 195 ms
17,280 KB
testcase_16 AC 118 ms
12,928 KB
testcase_17 AC 1,017 ms
48,000 KB
testcase_18 AC 1,112 ms
53,760 KB
testcase_19 AC 462 ms
25,600 KB
testcase_20 AC 491 ms
28,332 KB
testcase_21 AC 233 ms
18,944 KB
testcase_22 AC 1,667 ms
78,976 KB
testcase_23 AC 92 ms
12,160 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

n=gets.to_i
a=Array.new(n)
b=Array.new(n)
n.times{|i|a[i],b[i]=gets.split.map &:to_i}
m=gets.to_i
x=Array.new(m)
y=Array.new(m)
m.times{|j|x[j],y[j]=gets.split.map &:to_i}
z=(0...m).map{|j|[j,(0...n).map{|i|x[j]<=a[i]&&y[j]>=b[i]?1:0}.sum]}.group_by{|k,v|v}.max_by{|k,v|k}
z[0]>0?z[1].map{|k,v|p k+1}:(p 0)
0