結果

問題 No.716 距離
ユーザー yumechiyumechi
提出日時 2019-12-04 22:25:33
言語 Ruby
(3.3.0)
結果
AC  
実行時間 718 ms / 2,000 ms
コード長 150 bytes
コンパイル時間 166 ms
コンパイル使用メモリ 7,680 KB
実行使用メモリ 37,760 KB
最終ジャッジ日時 2024-12-14 12:44:39
合計ジャッジ時間 16,195 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 712 ms
37,760 KB
testcase_01 AC 716 ms
37,632 KB
testcase_02 AC 711 ms
37,760 KB
testcase_03 AC 713 ms
37,760 KB
testcase_04 AC 711 ms
37,760 KB
testcase_05 AC 718 ms
37,632 KB
testcase_06 AC 715 ms
37,760 KB
testcase_07 AC 90 ms
12,160 KB
testcase_08 AC 89 ms
12,160 KB
testcase_09 AC 88 ms
12,160 KB
testcase_10 AC 513 ms
29,568 KB
testcase_11 AC 207 ms
16,128 KB
testcase_12 AC 657 ms
35,456 KB
testcase_13 AC 458 ms
27,520 KB
testcase_14 AC 88 ms
12,288 KB
testcase_15 AC 593 ms
32,256 KB
testcase_16 AC 290 ms
21,504 KB
testcase_17 AC 631 ms
34,816 KB
testcase_18 AC 98 ms
12,288 KB
testcase_19 AC 231 ms
17,152 KB
testcase_20 AC 89 ms
12,288 KB
testcase_21 AC 99 ms
12,288 KB
testcase_22 AC 146 ms
14,592 KB
testcase_23 AC 96 ms
12,160 KB
testcase_24 AC 505 ms
29,696 KB
testcase_25 AC 205 ms
16,384 KB
testcase_26 AC 332 ms
23,168 KB
testcase_27 AC 408 ms
26,240 KB
testcase_28 AC 96 ms
12,160 KB
testcase_29 AC 349 ms
23,040 KB
testcase_30 AC 335 ms
23,168 KB
testcase_31 AC 466 ms
28,928 KB
testcase_32 AC 400 ms
25,728 KB
testcase_33 AC 365 ms
23,808 KB
testcase_34 AC 281 ms
20,992 KB
testcase_35 AC 87 ms
12,160 KB
testcase_36 AC 122 ms
13,184 KB
testcase_37 AC 88 ms
12,288 KB
testcase_38 AC 181 ms
15,616 KB
testcase_39 AC 356 ms
24,064 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

_=gets.to_i
a=gets.split.map(&:to_i)
x,y=a.map.with_index{|m,i|a.map.with_index{|n,j|i==j ? nil : (n-m).abs}}.flatten.select{|n|n!=nil}.minmax
p x
p y
0