結果

問題 No.610 区間賞(Section Award)
ユーザー YosukeKawadaYosukeKawada
提出日時 2018-01-15 10:11:28
言語 Ruby
(3.3.0)
結果
AC  
実行時間 324 ms / 2,000 ms
コード長 375 bytes
コンパイル時間 212 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 51,328 KB
最終ジャッジ日時 2024-06-06 11:26:39
合計ジャッジ時間 9,773 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 72 ms
12,288 KB
testcase_01 AC 73 ms
12,160 KB
testcase_02 AC 71 ms
12,288 KB
testcase_03 AC 75 ms
12,160 KB
testcase_04 AC 71 ms
12,288 KB
testcase_05 AC 71 ms
12,288 KB
testcase_06 AC 74 ms
12,416 KB
testcase_07 AC 71 ms
12,160 KB
testcase_08 AC 73 ms
12,416 KB
testcase_09 AC 71 ms
12,032 KB
testcase_10 AC 73 ms
12,288 KB
testcase_11 AC 72 ms
12,288 KB
testcase_12 AC 71 ms
12,160 KB
testcase_13 AC 73 ms
12,288 KB
testcase_14 AC 72 ms
12,288 KB
testcase_15 AC 94 ms
12,160 KB
testcase_16 AC 72 ms
12,288 KB
testcase_17 AC 71 ms
12,416 KB
testcase_18 AC 70 ms
12,160 KB
testcase_19 AC 111 ms
19,200 KB
testcase_20 AC 241 ms
42,504 KB
testcase_21 AC 93 ms
16,256 KB
testcase_22 AC 171 ms
33,092 KB
testcase_23 AC 83 ms
14,336 KB
testcase_24 AC 108 ms
20,224 KB
testcase_25 AC 83 ms
13,440 KB
testcase_26 AC 145 ms
25,444 KB
testcase_27 AC 240 ms
42,112 KB
testcase_28 AC 218 ms
41,336 KB
testcase_29 AC 168 ms
30,948 KB
testcase_30 AC 224 ms
39,404 KB
testcase_31 AC 142 ms
25,216 KB
testcase_32 AC 235 ms
39,936 KB
testcase_33 AC 95 ms
16,128 KB
testcase_34 AC 242 ms
42,372 KB
testcase_35 AC 152 ms
26,464 KB
testcase_36 AC 230 ms
40,316 KB
testcase_37 AC 211 ms
38,784 KB
testcase_38 AC 106 ms
19,328 KB
testcase_39 AC 246 ms
43,036 KB
testcase_40 AC 237 ms
43,016 KB
testcase_41 AC 245 ms
43,008 KB
testcase_42 AC 251 ms
47,104 KB
testcase_43 AC 237 ms
42,752 KB
testcase_44 AC 280 ms
40,004 KB
testcase_45 AC 319 ms
44,820 KB
testcase_46 AC 324 ms
51,328 KB
testcase_47 AC 217 ms
40,400 KB
testcase_48 AC 208 ms
38,516 KB
testcase_49 AC 216 ms
40,924 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