結果

問題 No.816 Beautiful tuples
ユーザー betrue12betrue12
提出日時 2019-04-19 21:27:49
言語 Ruby
(3.3.0)
結果
AC  
実行時間 86 ms / 1,500 ms
コード長 300 bytes
コンパイル時間 516 ms
コンパイル使用メモリ 11,948 KB
実行使用メモリ 16,124 KB
最終ジャッジ日時 2023-10-23 23:18:28
合計ジャッジ時間 3,034 ms
ジャッジサーバーID
(参考情報)
judge15 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 82 ms
16,124 KB
testcase_01 AC 82 ms
16,124 KB
testcase_02 AC 82 ms
16,120 KB
testcase_03 AC 84 ms
16,124 KB
testcase_04 AC 83 ms
16,124 KB
testcase_05 AC 84 ms
16,124 KB
testcase_06 AC 83 ms
16,120 KB
testcase_07 AC 84 ms
16,124 KB
testcase_08 AC 83 ms
16,124 KB
testcase_09 AC 82 ms
16,124 KB
testcase_10 AC 85 ms
16,124 KB
testcase_11 AC 86 ms
16,124 KB
testcase_12 AC 84 ms
16,124 KB
testcase_13 AC 84 ms
16,124 KB
testcase_14 AC 83 ms
16,124 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:17: warning: ambiguous first argument; put parentheses or a space even after `-' operator
Syntax OK

ソースコード

diff #

a, b = gets.split.map(&:to_i)

s = a+b
ans = []
(1..s).each do |i|
    break if i*i > s
    next if s % i > 0
    [i, s/i].each do |c|
        if c != a && c != b && (b+c) % a == 0 && (c+a) % b == 0
            ans.push(c)
        end
    end
end
if ans.size > 0
    puts ans.min
else
    puts -1
end
0