結果

問題 No.92 逃走経路
ユーザー letrangerjpletrangerjp
提出日時 2017-11-03 00:33:56
言語 Ruby
(3.3.0)
結果
AC  
実行時間 793 ms / 5,000 ms
コード長 149 bytes
コンパイル時間 104 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 46,976 KB
最終ジャッジ日時 2024-11-22 14:25:15
合計ジャッジ時間 6,746 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 231 ms
23,552 KB
testcase_01 AC 85 ms
12,032 KB
testcase_02 AC 85 ms
12,288 KB
testcase_03 AC 87 ms
12,160 KB
testcase_04 AC 86 ms
12,032 KB
testcase_05 AC 418 ms
43,776 KB
testcase_06 AC 195 ms
19,840 KB
testcase_07 AC 190 ms
19,840 KB
testcase_08 AC 89 ms
12,160 KB
testcase_09 AC 150 ms
15,104 KB
testcase_10 AC 761 ms
26,008 KB
testcase_11 AC 793 ms
27,116 KB
testcase_12 AC 789 ms
46,976 KB
testcase_13 AC 112 ms
14,080 KB
testcase_14 AC 143 ms
16,000 KB
testcase_15 AC 181 ms
18,432 KB
testcase_16 AC 189 ms
17,792 KB
testcase_17 AC 229 ms
22,656 KB
testcase_18 AC 202 ms
21,120 KB
testcase_19 AC 194 ms
20,096 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