結果

問題 No.610 区間賞(Section Award)
ユーザー TANIGUCHI KousukeTANIGUCHI Kousuke
提出日時 2017-12-12 05:32:33
言語 Ruby
(3.3.0)
結果
AC  
実行時間 277 ms / 2,000 ms
コード長 210 bytes
コンパイル時間 122 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 32,128 KB
最終ジャッジ日時 2024-05-08 03:59:34
合計ジャッジ時間 10,282 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 92 ms
12,160 KB
testcase_01 AC 93 ms
12,160 KB
testcase_02 AC 89 ms
12,288 KB
testcase_03 AC 90 ms
12,416 KB
testcase_04 AC 88 ms
12,288 KB
testcase_05 AC 90 ms
12,160 KB
testcase_06 AC 88 ms
12,288 KB
testcase_07 AC 90 ms
12,288 KB
testcase_08 AC 91 ms
12,288 KB
testcase_09 AC 89 ms
12,160 KB
testcase_10 AC 91 ms
12,288 KB
testcase_11 AC 89 ms
12,160 KB
testcase_12 AC 91 ms
12,160 KB
testcase_13 AC 91 ms
12,288 KB
testcase_14 AC 89 ms
12,288 KB
testcase_15 AC 88 ms
12,288 KB
testcase_16 AC 89 ms
12,288 KB
testcase_17 AC 88 ms
12,416 KB
testcase_18 AC 87 ms
12,160 KB
testcase_19 AC 114 ms
14,848 KB
testcase_20 AC 200 ms
26,752 KB
testcase_21 AC 105 ms
13,824 KB
testcase_22 AC 165 ms
21,632 KB
testcase_23 AC 100 ms
12,928 KB
testcase_24 AC 118 ms
15,360 KB
testcase_25 AC 98 ms
12,800 KB
testcase_26 AC 144 ms
16,360 KB
testcase_27 AC 200 ms
26,752 KB
testcase_28 AC 182 ms
24,320 KB
testcase_29 AC 157 ms
20,992 KB
testcase_30 AC 182 ms
23,552 KB
testcase_31 AC 141 ms
16,384 KB
testcase_32 AC 192 ms
25,088 KB
testcase_33 AC 105 ms
13,952 KB
testcase_34 AC 201 ms
26,752 KB
testcase_35 AC 144 ms
16,608 KB
testcase_36 AC 198 ms
25,728 KB
testcase_37 AC 179 ms
23,424 KB
testcase_38 AC 115 ms
14,976 KB
testcase_39 AC 205 ms
27,264 KB
testcase_40 AC 205 ms
27,136 KB
testcase_41 AC 208 ms
27,136 KB
testcase_42 AC 207 ms
27,264 KB
testcase_43 AC 208 ms
27,136 KB
testcase_44 AC 241 ms
25,088 KB
testcase_45 AC 274 ms
32,128 KB
testcase_46 AC 277 ms
32,128 KB
testcase_47 AC 182 ms
23,808 KB
testcase_48 AC 176 ms
23,168 KB
testcase_49 AC 182 ms
24,064 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

n = gets.to_i
s, t = 2.times.map{ gets.split.map(&:to_i) }
w, l = 2.times.map{ Array.new(n+1) }
s.each_with_index{|v,i| w[v] = i }
t.inject(-1){|j,v| (l[v] = w[v] > j) ? w[v] : j }
puts (1..n).select{|v| l[v]}
0