結果

問題 No.610 区間賞(Section Award)
ユーザー letrangerjpletrangerjp
提出日時 2017-12-11 22:36:34
言語 Ruby
(3.3.0)
結果
AC  
実行時間 278 ms / 2,000 ms
コード長 82 bytes
コンパイル時間 671 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 33,152 KB
最終ジャッジ日時 2024-05-08 00:01:09
合計ジャッジ時間 9,671 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 83 ms
12,288 KB
testcase_01 AC 84 ms
12,416 KB
testcase_02 AC 82 ms
12,288 KB
testcase_03 AC 83 ms
12,288 KB
testcase_04 AC 82 ms
12,160 KB
testcase_05 AC 84 ms
12,160 KB
testcase_06 AC 82 ms
12,160 KB
testcase_07 AC 82 ms
12,160 KB
testcase_08 AC 83 ms
12,160 KB
testcase_09 AC 81 ms
12,160 KB
testcase_10 AC 83 ms
12,288 KB
testcase_11 AC 82 ms
12,288 KB
testcase_12 AC 82 ms
12,288 KB
testcase_13 AC 80 ms
12,416 KB
testcase_14 AC 82 ms
12,416 KB
testcase_15 AC 82 ms
12,160 KB
testcase_16 AC 83 ms
12,288 KB
testcase_17 AC 85 ms
12,160 KB
testcase_18 AC 82 ms
12,288 KB
testcase_19 AC 102 ms
14,592 KB
testcase_20 AC 169 ms
25,344 KB
testcase_21 AC 97 ms
13,440 KB
testcase_22 AC 139 ms
20,608 KB
testcase_23 AC 92 ms
13,056 KB
testcase_24 AC 104 ms
15,104 KB
testcase_25 AC 92 ms
12,544 KB
testcase_26 AC 124 ms
17,792 KB
testcase_27 AC 171 ms
25,216 KB
testcase_28 AC 158 ms
22,912 KB
testcase_29 AC 137 ms
19,840 KB
testcase_30 AC 149 ms
22,272 KB
testcase_31 AC 125 ms
17,408 KB
testcase_32 AC 163 ms
23,808 KB
testcase_33 AC 96 ms
13,440 KB
testcase_34 AC 176 ms
25,472 KB
testcase_35 AC 127 ms
17,920 KB
testcase_36 AC 159 ms
24,192 KB
testcase_37 AC 155 ms
22,144 KB
testcase_38 AC 109 ms
14,720 KB
testcase_39 AC 171 ms
25,600 KB
testcase_40 AC 176 ms
25,600 KB
testcase_41 AC 168 ms
25,856 KB
testcase_42 AC 167 ms
25,856 KB
testcase_43 AC 169 ms
25,856 KB
testcase_44 AC 243 ms
25,728 KB
testcase_45 AC 278 ms
33,152 KB
testcase_46 AC 274 ms
33,152 KB
testcase_47 AC 154 ms
22,528 KB
testcase_48 AC 146 ms
22,016 KB
testcase_49 AC 151 ms
22,912 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:2: warning: `*' interpreted as argument prefix
Syntax OK

ソースコード

diff #

_,A,B=$<.map{|s|s.split.map &:to_i}
p *B.select{|x|i=A.index x;i&&A.shift(i)}.sort
0