結果

問題 No.610 区間賞(Section Award)
ユーザー YosukeKawadaYosukeKawada
提出日時 2018-01-15 10:19:41
言語 Ruby
(3.4.1)
結果
WA  
実行時間 -
コード長 416 bytes
コンパイル時間 42 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 46,464 KB
最終ジャッジ日時 2024-12-24 02:33:38
合計ジャッジ時間 13,326 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 96 ms
12,160 KB
testcase_06 AC 97 ms
12,288 KB
testcase_07 AC 101 ms
12,288 KB
testcase_08 AC 106 ms
12,160 KB
testcase_09 AC 95 ms
12,288 KB
testcase_10 AC 97 ms
12,288 KB
testcase_11 AC 95 ms
12,032 KB
testcase_12 AC 96 ms
12,160 KB
testcase_13 AC 97 ms
12,160 KB
testcase_14 AC 98 ms
12,032 KB
testcase_15 AC 101 ms
12,032 KB
testcase_16 AC 96 ms
12,032 KB
testcase_17 AC 99 ms
12,416 KB
testcase_18 AC 95 ms
12,160 KB
testcase_19 AC 149 ms
18,944 KB
testcase_20 AC 386 ms
46,464 KB
testcase_21 AC 136 ms
16,256 KB
testcase_22 AC 277 ms
33,100 KB
testcase_23 AC 117 ms
14,464 KB
testcase_24 AC 159 ms
20,224 KB
testcase_25 AC 109 ms
13,568 KB
testcase_26 AC 223 ms
25,412 KB
testcase_27 AC 361 ms
41,988 KB
testcase_28 AC 335 ms
41,468 KB
testcase_29 AC 259 ms
31,708 KB
testcase_30 AC 358 ms
39,236 KB
testcase_31 AC 211 ms
25,216 KB
testcase_32 AC 358 ms
39,784 KB
testcase_33 AC 137 ms
16,256 KB
testcase_34 AC 378 ms
42,244 KB
testcase_35 AC 233 ms
26,564 KB
testcase_36 AC 374 ms
44,416 KB
testcase_37 AC 323 ms
38,876 KB
testcase_38 AC 157 ms
19,328 KB
testcase_39 AC 387 ms
43,012 KB
testcase_40 AC 375 ms
42,764 KB
testcase_41 AC 370 ms
42,904 KB
testcase_42 AC 373 ms
42,912 KB
testcase_43 AC 378 ms
43,008 KB
testcase_44 WA -
testcase_45 WA -
testcase_46 WA -
testcase_47 AC 343 ms
40,416 KB
testcase_48 AC 315 ms
38,516 KB
testcase_49 AC 330 ms
40,536 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:8: warning: assigned but unused variable - ans
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
    runner[n][:ok] = true
  end
  preliminary_head = [preliminary_head, runner[n][:t]].min
}

puts (1...N).select{ |n| runner[n][:ok] }

0