結果

問題 No.610 区間賞(Section Award)
ユーザー YosukeKawadaYosukeKawada
提出日時 2018-01-15 10:19:41
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 416 bytes
コンパイル時間 351 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 44,700 KB
最終ジャッジ日時 2024-06-06 11:26:52
合計ジャッジ時間 9,634 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 72 ms
12,288 KB
testcase_06 AC 75 ms
12,288 KB
testcase_07 AC 72 ms
12,288 KB
testcase_08 AC 78 ms
12,160 KB
testcase_09 AC 71 ms
12,032 KB
testcase_10 AC 73 ms
12,160 KB
testcase_11 AC 73 ms
12,160 KB
testcase_12 AC 73 ms
12,288 KB
testcase_13 AC 73 ms
12,288 KB
testcase_14 AC 76 ms
12,032 KB
testcase_15 AC 73 ms
12,288 KB
testcase_16 AC 74 ms
12,288 KB
testcase_17 AC 72 ms
12,288 KB
testcase_18 AC 73 ms
12,032 KB
testcase_19 AC 112 ms
19,200 KB
testcase_20 AC 254 ms
42,400 KB
testcase_21 AC 98 ms
16,128 KB
testcase_22 AC 196 ms
34,944 KB
testcase_23 AC 86 ms
14,592 KB
testcase_24 AC 113 ms
20,096 KB
testcase_25 AC 84 ms
13,440 KB
testcase_26 AC 157 ms
25,568 KB
testcase_27 AC 266 ms
42,244 KB
testcase_28 AC 244 ms
41,328 KB
testcase_29 AC 181 ms
30,964 KB
testcase_30 AC 232 ms
39,272 KB
testcase_31 AC 148 ms
25,344 KB
testcase_32 AC 247 ms
39,688 KB
testcase_33 AC 96 ms
16,256 KB
testcase_34 AC 266 ms
42,264 KB
testcase_35 AC 162 ms
28,000 KB
testcase_36 AC 250 ms
40,352 KB
testcase_37 AC 236 ms
38,616 KB
testcase_38 AC 114 ms
19,456 KB
testcase_39 AC 263 ms
42,912 KB
testcase_40 AC 264 ms
42,876 KB
testcase_41 AC 262 ms
42,868 KB
testcase_42 AC 259 ms
42,776 KB
testcase_43 AC 262 ms
43,016 KB
testcase_44 WA -
testcase_45 WA -
testcase_46 WA -
testcase_47 AC 231 ms
40,064 KB
testcase_48 AC 220 ms
38,480 KB
testcase_49 AC 234 ms
40,696 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