結果

問題 No.610 区間賞(Section Award)
ユーザー TANIGUCHI KousukeTANIGUCHI Kousuke
提出日時 2017-12-11 18:18:15
言語 Ruby
(3.3.0)
結果
AC  
実行時間 285 ms / 2,000 ms
コード長 251 bytes
コンパイル時間 111 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 32,768 KB
最終ジャッジ日時 2024-11-30 11:39:40
合計ジャッジ時間 9,653 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 92 ms
12,160 KB
testcase_01 AC 90 ms
12,160 KB
testcase_02 AC 93 ms
12,288 KB
testcase_03 AC 91 ms
12,288 KB
testcase_04 AC 91 ms
12,032 KB
testcase_05 AC 90 ms
12,160 KB
testcase_06 AC 89 ms
12,160 KB
testcase_07 AC 89 ms
12,160 KB
testcase_08 AC 93 ms
12,288 KB
testcase_09 AC 91 ms
12,160 KB
testcase_10 AC 94 ms
12,288 KB
testcase_11 AC 93 ms
12,288 KB
testcase_12 AC 90 ms
12,160 KB
testcase_13 AC 91 ms
12,288 KB
testcase_14 AC 96 ms
12,160 KB
testcase_15 AC 89 ms
12,160 KB
testcase_16 AC 91 ms
12,032 KB
testcase_17 AC 91 ms
12,160 KB
testcase_18 AC 90 ms
12,032 KB
testcase_19 AC 112 ms
14,592 KB
testcase_20 AC 189 ms
25,984 KB
testcase_21 AC 106 ms
13,440 KB
testcase_22 AC 158 ms
21,120 KB
testcase_23 AC 103 ms
12,544 KB
testcase_24 AC 115 ms
15,104 KB
testcase_25 AC 97 ms
12,672 KB
testcase_26 AC 136 ms
16,204 KB
testcase_27 AC 192 ms
25,984 KB
testcase_28 AC 171 ms
23,424 KB
testcase_29 AC 154 ms
20,096 KB
testcase_30 AC 168 ms
22,912 KB
testcase_31 AC 134 ms
16,128 KB
testcase_32 AC 180 ms
24,448 KB
testcase_33 AC 104 ms
13,568 KB
testcase_34 AC 192 ms
25,984 KB
testcase_35 AC 137 ms
16,248 KB
testcase_36 AC 184 ms
24,704 KB
testcase_37 AC 166 ms
22,528 KB
testcase_38 AC 116 ms
14,592 KB
testcase_39 AC 192 ms
26,496 KB
testcase_40 AC 190 ms
26,240 KB
testcase_41 AC 192 ms
26,240 KB
testcase_42 AC 196 ms
26,368 KB
testcase_43 AC 192 ms
26,368 KB
testcase_44 AC 247 ms
25,600 KB
testcase_45 AC 282 ms
32,768 KB
testcase_46 AC 285 ms
32,768 KB
testcase_47 AC 174 ms
23,168 KB
testcase_48 AC 167 ms
22,400 KB
testcase_49 AC 175 ms
23,552 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

n = gets.to_i
s = gets.split.map(&:to_i)
t = gets.split.map(&:to_i)
w = Array.new(n)

s.each_with_index do |v,i|
    w[v] = i
end
ans = []
t.inject(-1) do |m,v|
    if w[v] > m
        ans << v
        w[v]
    else
        m
    end
end
puts ans.sort
0