結果
問題 | No.816 Beautiful tuples |
ユーザー | siman |
提出日時 | 2020-11-09 17:09:06 |
言語 | Ruby (3.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 502 bytes |
コンパイル時間 | 68 ms |
コンパイル使用メモリ | 7,424 KB |
実行使用メモリ | 12,416 KB |
最終ジャッジ日時 | 2024-07-22 16:15:14 |
合計ジャッジ時間 | 2,226 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 88 ms
12,160 KB |
testcase_02 | AC | 83 ms
12,288 KB |
testcase_03 | WA | - |
testcase_04 | AC | 85 ms
12,416 KB |
testcase_05 | AC | 88 ms
12,160 KB |
testcase_06 | AC | 84 ms
12,160 KB |
testcase_07 | AC | 85 ms
12,416 KB |
testcase_08 | AC | 86 ms
12,288 KB |
testcase_09 | AC | 83 ms
12,288 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | AC | 86 ms
12,288 KB |
testcase_13 | AC | 84 ms
12,416 KB |
testcase_14 | AC | 85 ms
12,288 KB |
コンパイルメッセージ
Main.rb:27: warning: ambiguous first argument; put parentheses or a space even after `-' operator Syntax OK
ソースコード
class Integer def divisor_list require 'prime' return [] if self <= 0 return [1] if self == 1 prime_division.map.with_index { |(base, k), i| s = i.zero? ? 0 : 1 (s..k).map { |n| base ** n } }.inject { |res, e| res + res.flat_map { |t| e.map { |v| t * v } } }.sort end end A, B = gets.split.map(&:to_i).sort (A + B).divisor_list.each do |x| next if x > A + B next if x < B - A if (A + x) % B == 0 && (B + x) % A == 0 puts x exit end end puts -1