結果

問題 No.816 Beautiful tuples
ユーザー tsuchinagatsuchinaga
提出日時 2019-04-20 23:45:58
言語 Go
(1.22.1)
結果
AC  
実行時間 219 ms / 1,500 ms
コード長 747 bytes
コンパイル時間 12,506 ms
コンパイル使用メモリ 232,824 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-10-02 10:09:49
合計ジャッジ時間 12,628 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 1 ms
6,820 KB
testcase_02 AC 1 ms
6,820 KB
testcase_03 AC 1 ms
6,820 KB
testcase_04 AC 139 ms
6,824 KB
testcase_05 AC 32 ms
6,816 KB
testcase_06 AC 98 ms
6,820 KB
testcase_07 AC 1 ms
6,816 KB
testcase_08 AC 12 ms
6,824 KB
testcase_09 AC 70 ms
6,820 KB
testcase_10 AC 1 ms
6,820 KB
testcase_11 AC 219 ms
6,820 KB
testcase_12 AC 10 ms
6,820 KB
testcase_13 AC 2 ms
6,820 KB
testcase_14 AC 2 ms
6,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package main

import "fmt"

func main() {
	var a, b int
	_, _ = fmt.Scan(&a, &b)

	check := func(c int) bool {
		return a != c && b != c && (a+b)%c == 0 && (b+c)%a == 0 && (c+a)%b == 0
	}

	if check(1) {
		fmt.Println(1)
		return
	}

	// 素因数分解
	n := a + b
	pn := make([]int, 0)
	for i := 2; i < n+1; i++ {
		if n%i == 0 {
			is := true
			for _, p := range pn {
				if i%p == 0 {
					is = false
					break
				}
			}
			if is {
				for n%i == 0 {
					n /= i
					// fmt.Println(i, n)
					pn = append(pn, i)
				}
			}
		}
	}
	// fmt.Println(pn)

	pattern := map[int]int{1: 1}
	for _, p := range pn {
		for q := range pattern {
			if check(p * q) {
				fmt.Println(p * q)
				return
			}
			pattern[p*q] = 1
		}
	}

	fmt.Println(-1)
}
0