結果

問題 No.610 区間賞(Section Award)
ユーザー cielciel
提出日時 2017-12-10 00:16:36
言語 Ruby
(3.3.0)
結果
AC  
実行時間 257 ms / 2,000 ms
コード長 169 bytes
コンパイル時間 46 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 32,768 KB
最終ジャッジ日時 2024-05-07 12:54:59
合計ジャッジ時間 7,896 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 79 ms
12,160 KB
testcase_01 AC 77 ms
12,032 KB
testcase_02 AC 77 ms
12,032 KB
testcase_03 AC 77 ms
11,904 KB
testcase_04 AC 74 ms
12,160 KB
testcase_05 AC 79 ms
12,160 KB
testcase_06 AC 82 ms
12,032 KB
testcase_07 AC 79 ms
12,032 KB
testcase_08 AC 78 ms
11,904 KB
testcase_09 AC 78 ms
12,160 KB
testcase_10 AC 79 ms
12,160 KB
testcase_11 AC 77 ms
12,160 KB
testcase_12 AC 83 ms
11,904 KB
testcase_13 AC 83 ms
12,160 KB
testcase_14 AC 84 ms
12,032 KB
testcase_15 AC 79 ms
12,160 KB
testcase_16 AC 78 ms
12,160 KB
testcase_17 AC 79 ms
12,160 KB
testcase_18 AC 78 ms
12,160 KB
testcase_19 AC 94 ms
15,360 KB
testcase_20 AC 173 ms
29,952 KB
testcase_21 AC 88 ms
13,952 KB
testcase_22 AC 146 ms
22,912 KB
testcase_23 AC 85 ms
13,056 KB
testcase_24 AC 102 ms
15,872 KB
testcase_25 AC 85 ms
12,672 KB
testcase_26 AC 125 ms
18,276 KB
testcase_27 AC 171 ms
29,952 KB
testcase_28 AC 159 ms
28,032 KB
testcase_29 AC 134 ms
22,784 KB
testcase_30 AC 154 ms
26,880 KB
testcase_31 AC 118 ms
18,176 KB
testcase_32 AC 163 ms
28,544 KB
testcase_33 AC 88 ms
13,952 KB
testcase_34 AC 175 ms
29,824 KB
testcase_35 AC 124 ms
18,280 KB
testcase_36 AC 181 ms
29,184 KB
testcase_37 AC 152 ms
27,008 KB
testcase_38 AC 95 ms
15,616 KB
testcase_39 AC 174 ms
30,336 KB
testcase_40 AC 175 ms
30,336 KB
testcase_41 AC 177 ms
30,208 KB
testcase_42 AC 186 ms
30,336 KB
testcase_43 AC 178 ms
30,336 KB
testcase_44 AC 235 ms
29,824 KB
testcase_45 AC 255 ms
32,512 KB
testcase_46 AC 257 ms
32,768 KB
testcase_47 AC 159 ms
27,904 KB
testcase_48 AC 150 ms
27,008 KB
testcase_49 AC 159 ms
28,032 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:16: warning: `*' interpreted as argument prefix
Syntax OK

ソースコード

diff #

gets
a=gets.split.map &:to_i
Z={}
r=[]
gets.split.each{|e|
	n=e.to_i
	next if Z[n]
	while a[0]
		v=a.shift
		Z[v]=1
		break if v==n
	end
	break if v!=n
	r<<n
}
p *r.sort
0