結果

問題 No.2358 xy+yz+zx=N
ユーザー rlangevinrlangevin
提出日時 2023-06-23 22:19:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 223 ms / 2,000 ms
コード長 601 bytes
コンパイル時間 237 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 86,144 KB
最終ジャッジ日時 2024-07-01 17:35:14
合計ジャッジ時間 2,687 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,224 KB
testcase_01 AC 40 ms
51,968 KB
testcase_02 AC 41 ms
52,608 KB
testcase_03 AC 41 ms
51,840 KB
testcase_04 AC 39 ms
52,352 KB
testcase_05 AC 39 ms
52,224 KB
testcase_06 AC 46 ms
58,112 KB
testcase_07 AC 72 ms
71,424 KB
testcase_08 AC 223 ms
85,120 KB
testcase_09 AC 223 ms
86,144 KB
testcase_10 AC 195 ms
79,140 KB
testcase_11 AC 191 ms
80,384 KB
testcase_12 AC 162 ms
77,420 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import *

def div(n):
    if n <= 0:
        return []
    S = set()
    i = 1
    while i * i <= n:
        if n % i == 0:
            S.add(i)
            S.add(n // i)
        i += 1
    return list(S)


N = int(input())
x = 0
ans = []
while 3 * x * x <= N:
    for d in div(N + x ** 2):
        y = d - x
        z = (N + x**2)//d - x
        if y < x or z < x or z < y:
            continue
        ans.append((x, y, z))
    x += 1
    
S = set()
for a in ans:
    for x, y, z in permutations(a):
        S.add((x, y, z))
        
print(len(S))
for x, y, z in S:
    print(x, y, z)
0