結果

問題 No.2358 xy+yz+zx=N
ユーザー hir355hir355
提出日時 2023-06-23 22:23:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 135 ms / 2,000 ms
コード長 1,079 bytes
コンパイル時間 173 ms
コンパイル使用メモリ 81,932 KB
実行使用メモリ 81,656 KB
最終ジャッジ日時 2024-07-01 17:36:15
合計ジャッジ時間 2,032 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
53,356 KB
testcase_01 AC 40 ms
53,180 KB
testcase_02 AC 39 ms
52,872 KB
testcase_03 AC 38 ms
52,020 KB
testcase_04 AC 39 ms
51,808 KB
testcase_05 AC 39 ms
52,824 KB
testcase_06 AC 41 ms
53,828 KB
testcase_07 AC 62 ms
67,552 KB
testcase_08 AC 135 ms
81,320 KB
testcase_09 AC 135 ms
81,656 KB
testcase_10 AC 121 ms
77,308 KB
testcase_11 AC 123 ms
78,624 KB
testcase_12 AC 107 ms
76,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def devisors(n):
    d = []
    a = 1
    while a * a < n:
        if n % a == 0:
            d.append(a)
            d.append(n // a)
        a += 1
    if a * a == n:
        d.append(a)
    return d


n = int(input())
x = 0
ans = []
while x * x <= n:
    a = max(1, x * 2)
    nn = n + x * x
    while a * a < nn:
        if nn % a == 0:
            z = nn // a - x
            y = a - x
            if x == y:
                ans.append((x, y, z))
                ans.append((z, x, y))
                ans.append((x, z, y))
            else:
                ans.append((x, y, z))
                ans.append((y, x, z))
                ans.append((z, x, y))
                ans.append((z, y, x))
                ans.append((x, z, y))
                ans.append((y, z, x))
        a += 1
    if a * a == nn:
        z = a - x
        y = a - x
        if x == y:
            ans.append((x, y, z))
        else:
            ans.append((x, y, z))
            ans.append((y, x, z))
            ans.append((y, z, x))
    x += 1
print(len(ans))
for x, y, z in ans:
    print(x, y, z)
0