結果

問題 No.2358 xy+yz+zx=N
ユーザー flygonflygon
提出日時 2023-06-23 22:08:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 199 ms / 2,000 ms
コード長 702 bytes
コンパイル時間 262 ms
コンパイル使用メモリ 81,860 KB
実行使用メモリ 86,040 KB
最終ジャッジ日時 2024-07-01 17:33:19
合計ジャッジ時間 2,586 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
56,008 KB
testcase_01 AC 44 ms
54,772 KB
testcase_02 AC 45 ms
54,616 KB
testcase_03 AC 44 ms
54,360 KB
testcase_04 AC 44 ms
55,660 KB
testcase_05 AC 48 ms
55,896 KB
testcase_06 AC 49 ms
62,468 KB
testcase_07 AC 71 ms
72,780 KB
testcase_08 AC 197 ms
85,552 KB
testcase_09 AC 199 ms
86,040 KB
testcase_10 AC 181 ms
80,080 KB
testcase_11 AC 182 ms
81,364 KB
testcase_12 AC 156 ms
78,372 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(5*10**5)
input = sys.stdin.readline
from collections import defaultdict, deque, Counter
from heapq import heappop, heappush
from bisect import bisect_left, bisect_right
from math import gcd

n = int(input())
sq = int(n**0.5)+5
ans = set()
for x in range(sq):
    for y in range(x, sq):
        if x + y == 0: continue
        left = n-x*y
        if left < 0:break
        if left % (x+y) == 0:
            z = left//(x+y)
            if z <y :break
            ans.add((x,y,z))
            ans.add((x,z,y))
            ans.add((y,x,z))
            ans.add((y,z,x))
            ans.add((z,x,y))
            ans.add((z,y,x))

print(len(ans))
for i in ans:
    print(*i)
0