結果

問題 No.610 区間賞(Section Award)
ユーザー YosukeKawadaYosukeKawada
提出日時 2017-12-29 10:38:02
言語 Ruby
(3.3.0)
結果
AC  
実行時間 389 ms / 2,000 ms
コード長 409 bytes
コンパイル時間 145 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 33,536 KB
最終ジャッジ日時 2024-06-01 06:35:18
合計ジャッジ時間 12,387 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 93 ms
12,288 KB
testcase_01 AC 93 ms
12,288 KB
testcase_02 AC 92 ms
12,160 KB
testcase_03 AC 93 ms
12,288 KB
testcase_04 AC 92 ms
12,160 KB
testcase_05 AC 93 ms
12,160 KB
testcase_06 AC 97 ms
12,160 KB
testcase_07 AC 94 ms
12,160 KB
testcase_08 AC 98 ms
12,160 KB
testcase_09 AC 97 ms
12,160 KB
testcase_10 AC 97 ms
12,160 KB
testcase_11 AC 97 ms
12,416 KB
testcase_12 AC 95 ms
12,416 KB
testcase_13 AC 97 ms
12,288 KB
testcase_14 AC 100 ms
12,160 KB
testcase_15 AC 98 ms
12,160 KB
testcase_16 AC 98 ms
12,288 KB
testcase_17 AC 96 ms
12,544 KB
testcase_18 AC 94 ms
12,160 KB
testcase_19 AC 135 ms
15,616 KB
testcase_20 AC 303 ms
32,512 KB
testcase_21 AC 124 ms
14,080 KB
testcase_22 AC 234 ms
24,320 KB
testcase_23 AC 115 ms
13,696 KB
testcase_24 AC 142 ms
15,744 KB
testcase_25 AC 107 ms
12,672 KB
testcase_26 AC 189 ms
19,200 KB
testcase_27 AC 305 ms
32,512 KB
testcase_28 AC 284 ms
25,216 KB
testcase_29 AC 227 ms
24,064 KB
testcase_30 AC 264 ms
24,448 KB
testcase_31 AC 184 ms
19,328 KB
testcase_32 AC 292 ms
32,384 KB
testcase_33 AC 124 ms
14,080 KB
testcase_34 AC 297 ms
32,512 KB
testcase_35 AC 186 ms
19,072 KB
testcase_36 AC 293 ms
32,512 KB
testcase_37 AC 253 ms
24,448 KB
testcase_38 AC 136 ms
15,744 KB
testcase_39 AC 309 ms
33,408 KB
testcase_40 AC 304 ms
33,280 KB
testcase_41 AC 303 ms
33,280 KB
testcase_42 AC 308 ms
33,536 KB
testcase_43 AC 306 ms
33,408 KB
testcase_44 AC 338 ms
24,576 KB
testcase_45 AC 389 ms
32,768 KB
testcase_46 AC 389 ms
33,152 KB
testcase_47 AC 269 ms
24,576 KB
testcase_48 AC 255 ms
24,448 KB
testcase_49 AC 274 ms
24,960 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:9: warning: assigned but unused variable - s
Syntax OK

ソースコード

diff #

N     = $stdin.gets.chomp.to_i
place = (0...N).map{ |i| [i+1,0,0] }
$stdin.gets.chomp.split(" ").map{ |a| a.to_i }.each_with_index{ |s,i| place[s-1][1] = i+1 }
$stdin.gets.chomp.split(" ").map{ |a| a.to_i }.each_with_index{ |g,i| place[g-1][2] = i+1 }

g_min = N+1
ans = []
place.sort_by{ |e| e[1] }.reverse.each { |e|
  n,s,g = *e
  if g <= g_min
    ans << n
  end
  g_min = [g_min, g].min
}

puts ans.sort
0