結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 89 ms
12,160 KB
testcase_01 AC 86 ms
12,160 KB
testcase_02 AC 88 ms
12,160 KB
testcase_03 AC 87 ms
12,032 KB
testcase_04 AC 87 ms
11,904 KB
testcase_05 AC 87 ms
12,032 KB
testcase_06 AC 87 ms
12,032 KB
testcase_07 AC 84 ms
12,160 KB
testcase_08 AC 89 ms
12,160 KB
testcase_09 AC 86 ms
12,032 KB
testcase_10 AC 89 ms
12,160 KB
testcase_11 AC 90 ms
12,032 KB
testcase_12 AC 85 ms
12,032 KB
testcase_13 AC 89 ms
12,160 KB
testcase_14 AC 90 ms
12,288 KB
testcase_15 AC 86 ms
11,904 KB
testcase_16 AC 86 ms
12,032 KB
testcase_17 AC 87 ms
12,160 KB
testcase_18 AC 87 ms
11,904 KB
testcase_19 AC 124 ms
15,744 KB
testcase_20 AC 271 ms
32,384 KB
testcase_21 AC 111 ms
13,824 KB
testcase_22 AC 203 ms
24,064 KB
testcase_23 AC 103 ms
13,440 KB
testcase_24 AC 130 ms
15,744 KB
testcase_25 AC 97 ms
12,416 KB
testcase_26 AC 167 ms
19,072 KB
testcase_27 AC 266 ms
32,384 KB
testcase_28 AC 243 ms
24,960 KB
testcase_29 AC 199 ms
23,936 KB
testcase_30 AC 226 ms
24,320 KB
testcase_31 AC 160 ms
19,200 KB
testcase_32 AC 261 ms
32,256 KB
testcase_33 AC 111 ms
13,824 KB
testcase_34 AC 271 ms
32,512 KB
testcase_35 AC 168 ms
18,944 KB
testcase_36 AC 258 ms
32,000 KB
testcase_37 AC 222 ms
24,192 KB
testcase_38 AC 127 ms
15,616 KB
testcase_39 AC 283 ms
33,152 KB
testcase_40 AC 276 ms
33,280 KB
testcase_41 AC 277 ms
33,024 KB
testcase_42 AC 273 ms
33,408 KB
testcase_43 AC 271 ms
33,280 KB
testcase_44 AC 306 ms
24,448 KB
testcase_45 AC 353 ms
32,384 KB
testcase_46 AC 364 ms
33,024 KB
testcase_47 AC 234 ms
24,448 KB
testcase_48 AC 224 ms
24,320 KB
testcase_49 AC 238 ms
24,704 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