結果

問題 No.92 逃走経路
ユーザー letrangerjpletrangerjp
提出日時 2017-11-03 00:33:56
言語 Ruby
(3.3.0)
結果
AC  
実行時間 724 ms / 5,000 ms
コード長 149 bytes
コンパイル時間 116 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 46,720 KB
最終ジャッジ日時 2024-05-02 04:01:36
合計ジャッジ時間 5,700 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 218 ms
23,424 KB
testcase_01 AC 79 ms
12,160 KB
testcase_02 AC 80 ms
12,160 KB
testcase_03 AC 81 ms
12,288 KB
testcase_04 AC 77 ms
12,160 KB
testcase_05 AC 397 ms
43,648 KB
testcase_06 AC 170 ms
19,968 KB
testcase_07 AC 167 ms
19,968 KB
testcase_08 AC 79 ms
12,160 KB
testcase_09 AC 129 ms
15,872 KB
testcase_10 AC 682 ms
25,728 KB
testcase_11 AC 724 ms
27,352 KB
testcase_12 AC 708 ms
46,720 KB
testcase_13 AC 106 ms
14,208 KB
testcase_14 AC 130 ms
16,128 KB
testcase_15 AC 161 ms
18,560 KB
testcase_16 AC 163 ms
17,920 KB
testcase_17 AC 205 ms
22,656 KB
testcase_18 AC 185 ms
21,504 KB
testcase_19 AC 178 ms
20,480 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

_,*A,D=$<.map{|s|s.split.map &:to_i}
n=*1..101
D.map{|d|m=[]
A.map{|a,b,c|c==d&&(n.index(a)&&m<<b;n.index(b)&&m<<a)}
n=m.uniq}
puts n.size,n.sort*" "
0