結果

問題 No.716 距離
ユーザー YoteichiYoteichi
提出日時 2018-08-05 04:30:45
言語 Ruby
(3.3.0)
結果
AC  
実行時間 246 ms / 2,000 ms
コード長 264 bytes
コンパイル時間 196 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 12,288 KB
最終ジャッジ日時 2024-09-19 18:00:22
合計ジャッジ時間 8,176 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 234 ms
12,160 KB
testcase_01 AC 235 ms
12,160 KB
testcase_02 AC 239 ms
12,032 KB
testcase_03 AC 244 ms
12,160 KB
testcase_04 AC 240 ms
12,032 KB
testcase_05 AC 235 ms
12,288 KB
testcase_06 AC 246 ms
12,032 KB
testcase_07 AC 81 ms
12,160 KB
testcase_08 AC 83 ms
12,160 KB
testcase_09 AC 80 ms
12,288 KB
testcase_10 AC 182 ms
12,160 KB
testcase_11 AC 107 ms
12,160 KB
testcase_12 AC 229 ms
12,288 KB
testcase_13 AC 170 ms
12,160 KB
testcase_14 AC 74 ms
12,032 KB
testcase_15 AC 204 ms
12,288 KB
testcase_16 AC 129 ms
12,288 KB
testcase_17 AC 223 ms
12,288 KB
testcase_18 AC 85 ms
12,032 KB
testcase_19 AC 117 ms
12,032 KB
testcase_20 AC 83 ms
12,160 KB
testcase_21 AC 83 ms
12,160 KB
testcase_22 AC 94 ms
12,288 KB
testcase_23 AC 80 ms
12,160 KB
testcase_24 AC 185 ms
12,032 KB
testcase_25 AC 107 ms
12,288 KB
testcase_26 AC 142 ms
12,288 KB
testcase_27 AC 152 ms
12,032 KB
testcase_28 AC 78 ms
12,032 KB
testcase_29 AC 146 ms
12,032 KB
testcase_30 AC 138 ms
12,032 KB
testcase_31 AC 175 ms
12,288 KB
testcase_32 AC 158 ms
12,160 KB
testcase_33 AC 148 ms
12,160 KB
testcase_34 AC 124 ms
12,160 KB
testcase_35 AC 76 ms
12,160 KB
testcase_36 AC 88 ms
12,160 KB
testcase_37 AC 76 ms
12,160 KB
testcase_38 AC 98 ms
12,160 KB
testcase_39 AC 140 ms
12,288 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

n = gets.to_i
a = gets.split.map(&:to_i)
min = Float::INFINITY
max = -Float::INFINITY
(0...n).each do |i|
    (0...n).each do |j|
        next if i == j
        min = [min, (a[i] - a[j]).abs].min
        max = [max, (a[i] - a[j]).abs].max
    end
end
puts min, max
0