結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 96 ms
12,032 KB
testcase_01 AC 94 ms
12,160 KB
testcase_02 AC 94 ms
12,160 KB
testcase_03 AC 94 ms
12,160 KB
testcase_04 AC 96 ms
12,160 KB
testcase_05 AC 96 ms
12,288 KB
testcase_06 AC 98 ms
12,160 KB
testcase_07 AC 94 ms
12,160 KB
testcase_08 AC 95 ms
12,288 KB
testcase_09 AC 91 ms
12,416 KB
testcase_10 AC 101 ms
12,160 KB
testcase_11 AC 99 ms
12,160 KB
testcase_12 AC 94 ms
12,160 KB
testcase_13 AC 98 ms
12,160 KB
testcase_14 AC 98 ms
12,160 KB
testcase_15 AC 97 ms
12,288 KB
testcase_16 AC 96 ms
12,288 KB
testcase_17 AC 93 ms
12,160 KB
testcase_18 AC 93 ms
12,160 KB
testcase_19 AC 114 ms
14,848 KB
testcase_20 AC 202 ms
26,880 KB
testcase_21 AC 109 ms
13,696 KB
testcase_22 AC 170 ms
21,760 KB
testcase_23 AC 106 ms
12,672 KB
testcase_24 AC 120 ms
15,104 KB
testcase_25 AC 103 ms
12,672 KB
testcase_26 AC 148 ms
16,488 KB
testcase_27 AC 204 ms
26,880 KB
testcase_28 AC 185 ms
24,192 KB
testcase_29 AC 165 ms
20,736 KB
testcase_30 AC 184 ms
23,424 KB
testcase_31 AC 142 ms
16,384 KB
testcase_32 AC 196 ms
25,344 KB
testcase_33 AC 109 ms
13,696 KB
testcase_34 AC 201 ms
26,624 KB
testcase_35 AC 143 ms
16,472 KB
testcase_36 AC 198 ms
25,728 KB
testcase_37 AC 178 ms
23,168 KB
testcase_38 AC 118 ms
14,848 KB
testcase_39 AC 205 ms
27,136 KB
testcase_40 AC 203 ms
27,136 KB
testcase_41 AC 204 ms
27,392 KB
testcase_42 AC 203 ms
27,392 KB
testcase_43 AC 207 ms
27,136 KB
testcase_44 AC 247 ms
24,960 KB
testcase_45 AC 283 ms
32,000 KB
testcase_46 AC 285 ms
32,128 KB
testcase_47 AC 183 ms
23,808 KB
testcase_48 AC 177 ms
23,168 KB
testcase_49 AC 187 ms
24,064 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

n = gets.to_i
s = gets.split.map(&:to_i)
t = gets.split.map(&:to_i)
w = Array.new(n+1)
l = Array.new(n+1)
s.each_with_index{|v, i| w[v] = i }
t.inject(-1) do |j, v| 
    if w[v] > j
        l[v] = true
        w[v]
    else 
        j
    end
end
ans = (1..n).select {|v| l[v] }
puts ans
0