結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 83 ms
12,160 KB
testcase_01 AC 79 ms
12,160 KB
testcase_02 AC 77 ms
12,032 KB
testcase_03 AC 82 ms
12,160 KB
testcase_04 AC 79 ms
12,032 KB
testcase_05 AC 77 ms
12,160 KB
testcase_06 AC 77 ms
12,032 KB
testcase_07 AC 80 ms
12,288 KB
testcase_08 AC 83 ms
12,032 KB
testcase_09 AC 82 ms
12,160 KB
testcase_10 AC 84 ms
12,160 KB
testcase_11 AC 85 ms
12,288 KB
testcase_12 AC 81 ms
12,160 KB
testcase_13 AC 82 ms
12,288 KB
testcase_14 AC 82 ms
12,288 KB
testcase_15 AC 81 ms
12,288 KB
testcase_16 AC 81 ms
12,160 KB
testcase_17 AC 80 ms
12,160 KB
testcase_18 AC 78 ms
12,160 KB
testcase_19 AC 101 ms
15,488 KB
testcase_20 AC 178 ms
29,952 KB
testcase_21 AC 100 ms
13,824 KB
testcase_22 AC 155 ms
22,784 KB
testcase_23 AC 91 ms
13,056 KB
testcase_24 AC 101 ms
16,128 KB
testcase_25 AC 89 ms
12,544 KB
testcase_26 AC 125 ms
18,292 KB
testcase_27 AC 175 ms
29,824 KB
testcase_28 AC 170 ms
28,160 KB
testcase_29 AC 143 ms
22,272 KB
testcase_30 AC 158 ms
26,752 KB
testcase_31 AC 122 ms
18,176 KB
testcase_32 AC 173 ms
28,544 KB
testcase_33 AC 93 ms
14,208 KB
testcase_34 AC 178 ms
29,952 KB
testcase_35 AC 126 ms
18,304 KB
testcase_36 AC 170 ms
29,184 KB
testcase_37 AC 158 ms
27,136 KB
testcase_38 AC 102 ms
15,488 KB
testcase_39 AC 181 ms
30,336 KB
testcase_40 AC 187 ms
30,336 KB
testcase_41 AC 194 ms
30,208 KB
testcase_42 AC 184 ms
30,208 KB
testcase_43 AC 185 ms
30,336 KB
testcase_44 AC 243 ms
29,824 KB
testcase_45 AC 284 ms
32,640 KB
testcase_46 AC 275 ms
32,896 KB
testcase_47 AC 165 ms
27,136 KB
testcase_48 AC 155 ms
27,008 KB
testcase_49 AC 170 ms
27,904 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