結果

問題 No.610 区間賞(Section Award)
ユーザー YosukeKawadaYosukeKawada
提出日時 2018-01-15 10:11:28
言語 Ruby
(3.4.1)
結果
AC  
実行時間 354 ms / 2,000 ms
コード長 375 bytes
コンパイル時間 86 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 51,584 KB
最終ジャッジ日時 2024-12-24 02:33:23
合計ジャッジ時間 10,182 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 85 ms
12,288 KB
testcase_01 AC 77 ms
12,416 KB
testcase_02 AC 78 ms
12,160 KB
testcase_03 AC 80 ms
12,160 KB
testcase_04 AC 77 ms
12,160 KB
testcase_05 AC 78 ms
12,288 KB
testcase_06 AC 79 ms
12,288 KB
testcase_07 AC 81 ms
12,288 KB
testcase_08 AC 82 ms
12,416 KB
testcase_09 AC 84 ms
12,160 KB
testcase_10 AC 79 ms
12,288 KB
testcase_11 AC 80 ms
12,288 KB
testcase_12 AC 81 ms
12,288 KB
testcase_13 AC 80 ms
12,288 KB
testcase_14 AC 82 ms
12,032 KB
testcase_15 AC 83 ms
12,288 KB
testcase_16 AC 80 ms
12,160 KB
testcase_17 AC 80 ms
12,160 KB
testcase_18 AC 81 ms
12,288 KB
testcase_19 AC 122 ms
19,072 KB
testcase_20 AC 257 ms
42,400 KB
testcase_21 AC 100 ms
16,256 KB
testcase_22 AC 198 ms
33,152 KB
testcase_23 AC 91 ms
14,336 KB
testcase_24 AC 121 ms
20,352 KB
testcase_25 AC 89 ms
13,440 KB
testcase_26 AC 168 ms
25,564 KB
testcase_27 AC 263 ms
41,984 KB
testcase_28 AC 248 ms
41,164 KB
testcase_29 AC 188 ms
30,960 KB
testcase_30 AC 247 ms
41,216 KB
testcase_31 AC 159 ms
25,344 KB
testcase_32 AC 257 ms
39,708 KB
testcase_33 AC 108 ms
16,384 KB
testcase_34 AC 256 ms
42,092 KB
testcase_35 AC 172 ms
26,492 KB
testcase_36 AC 251 ms
40,728 KB
testcase_37 AC 237 ms
38,876 KB
testcase_38 AC 131 ms
19,328 KB
testcase_39 AC 281 ms
42,868 KB
testcase_40 AC 269 ms
43,016 KB
testcase_41 AC 270 ms
42,996 KB
testcase_42 AC 277 ms
43,004 KB
testcase_43 AC 278 ms
42,920 KB
testcase_44 AC 301 ms
40,404 KB
testcase_45 AC 354 ms
51,584 KB
testcase_46 AC 348 ms
44,428 KB
testcase_47 AC 245 ms
40,140 KB
testcase_48 AC 243 ms
38,508 KB
testcase_49 AC 248 ms
40,824 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

N = $stdin.gets.chomp.to_i
S = $stdin.gets.chomp.split(" ").map{ |a| a.to_i }
T = $stdin.gets.chomp.split(" ").map{ |a| a.to_i }

runner = Hash[T.map.with_index{ |n,i| [n, { t: i+1 }] }]

preliminary_head = N+1
ans = []

S.reverse.each{ |n|
  if runner[n][:t] < preliminary_head
    ans << n
  end
  preliminary_head = [preliminary_head, runner[n][:t]].min
}

puts ans.sort

0