結果

問題 No.2358 xy+yz+zx=N
ユーザー yabityabit
提出日時 2023-07-07 12:24:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 195 ms / 2,000 ms
コード長 514 bytes
コンパイル時間 199 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 81,920 KB
最終ジャッジ日時 2024-07-21 07:27:31
合計ジャッジ時間 2,950 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
51,968 KB
testcase_01 AC 34 ms
52,096 KB
testcase_02 AC 35 ms
51,840 KB
testcase_03 AC 36 ms
51,840 KB
testcase_04 AC 36 ms
51,584 KB
testcase_05 AC 34 ms
52,096 KB
testcase_06 AC 41 ms
58,112 KB
testcase_07 AC 68 ms
70,784 KB
testcase_08 AC 188 ms
81,152 KB
testcase_09 AC 195 ms
81,920 KB
testcase_10 AC 168 ms
78,592 KB
testcase_11 AC 173 ms
79,360 KB
testcase_12 AC 143 ms
77,568 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import permutations
def make_divisors_pairs(n): #約数のペアを作る O(sqrt(n))
    divisors = []
    i = 1
    while i*i <= n:
        if n % i == 0:
            divisors.append([i,n//i])
        i += 1
    return divisors

N = int(input())
ans = set()
for x in range(int((N/3)**(1/2))+10):
    for p, q in make_divisors_pairs(N+x*x):
        if p-x >= 0 and q-x >= 0:
            for per in permutations((x, p-x, q-x)):
                ans.add(per)
print(len(ans))
for a in ans:
    print(*a)
0