結果

問題 No.55 正方形を描くだけの簡単なお仕事です。
ユーザー letrangerjpletrangerjp
提出日時 2017-06-17 14:02:55
言語 Ruby
(3.3.0)
結果
AC  
実行時間 95 ms / 5,000 ms
コード長 297 bytes
コンパイル時間 260 ms
コンパイル使用メモリ 11,904 KB
実行使用メモリ 16,256 KB
最終ジャッジ日時 2024-04-08 17:29:39
合計ジャッジ時間 3,476 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 88 ms
16,256 KB
testcase_01 AC 87 ms
16,256 KB
testcase_02 AC 87 ms
16,256 KB
testcase_03 AC 87 ms
16,256 KB
testcase_04 AC 90 ms
16,256 KB
testcase_05 AC 90 ms
16,256 KB
testcase_06 AC 88 ms
16,256 KB
testcase_07 AC 86 ms
16,256 KB
testcase_08 AC 87 ms
16,256 KB
testcase_09 AC 87 ms
16,256 KB
testcase_10 AC 86 ms
16,256 KB
testcase_11 AC 86 ms
16,256 KB
testcase_12 AC 95 ms
16,256 KB
testcase_13 AC 86 ms
16,256 KB
testcase_14 AC 86 ms
16,256 KB
testcase_15 AC 90 ms
16,256 KB
testcase_16 AC 86 ms
16,256 KB
testcase_17 AC 88 ms
16,256 KB
testcase_18 AC 90 ms
16,256 KB
testcase_19 AC 87 ms
16,256 KB
testcase_20 AC 87 ms
16,256 KB
testcase_21 AC 87 ms
16,256 KB
testcase_22 AC 89 ms
16,256 KB
testcase_23 AC 90 ms
16,256 KB
testcase_24 AC 89 ms
16,256 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:18: warning: ambiguous first argument; put parentheses or a space even after `-' operator
Syntax OK

ソースコード

diff #

A, B, C = gets.split.take(6).map(&:to_i).each_slice(2).to_a

def f()
  [A, B, C].permutation(3).find{|a, b, c|
    x = a[0] - b[0]
    y = b[1] - a[1]

    if c[0] - b[0] == y && c[1] - b[1] == x
      return [c[0] + x, c[1] - y]
    end
  }
end

ans = f()
if ans
  puts ans * " "
else
  p -1
end
0