結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 88 ms
12,160 KB
testcase_01 AC 79 ms
12,288 KB
testcase_02 AC 79 ms
12,160 KB
testcase_03 AC 78 ms
12,416 KB
testcase_04 AC 80 ms
12,160 KB
testcase_05 AC 78 ms
12,288 KB
testcase_06 AC 79 ms
12,288 KB
testcase_07 AC 80 ms
12,160 KB
testcase_08 AC 82 ms
12,416 KB
testcase_09 AC 79 ms
12,288 KB
testcase_10 AC 83 ms
12,288 KB
testcase_11 AC 86 ms
12,160 KB
testcase_12 AC 81 ms
12,288 KB
testcase_13 AC 78 ms
12,288 KB
testcase_14 AC 84 ms
12,288 KB
testcase_15 AC 81 ms
12,160 KB
testcase_16 AC 81 ms
12,160 KB
testcase_17 AC 80 ms
12,416 KB
testcase_18 AC 79 ms
12,160 KB
testcase_19 AC 93 ms
14,464 KB
testcase_20 AC 168 ms
25,344 KB
testcase_21 AC 93 ms
13,568 KB
testcase_22 AC 135 ms
20,736 KB
testcase_23 AC 91 ms
12,800 KB
testcase_24 AC 101 ms
14,848 KB
testcase_25 AC 85 ms
12,800 KB
testcase_26 AC 119 ms
17,792 KB
testcase_27 AC 164 ms
25,216 KB
testcase_28 AC 145 ms
22,912 KB
testcase_29 AC 132 ms
19,840 KB
testcase_30 AC 150 ms
22,272 KB
testcase_31 AC 116 ms
17,152 KB
testcase_32 AC 156 ms
23,936 KB
testcase_33 AC 93 ms
13,568 KB
testcase_34 AC 170 ms
25,216 KB
testcase_35 AC 123 ms
17,792 KB
testcase_36 AC 155 ms
24,192 KB
testcase_37 AC 154 ms
22,016 KB
testcase_38 AC 104 ms
14,592 KB
testcase_39 AC 166 ms
25,600 KB
testcase_40 AC 178 ms
25,728 KB
testcase_41 AC 163 ms
25,728 KB
testcase_42 AC 168 ms
25,600 KB
testcase_43 AC 163 ms
25,856 KB
testcase_44 AC 216 ms
24,320 KB
testcase_45 AC 245 ms
31,744 KB
testcase_46 AC 242 ms
31,872 KB
testcase_47 AC 143 ms
22,528 KB
testcase_48 AC 138 ms
22,144 KB
testcase_49 AC 140 ms
22,656 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

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