結果

問題 No.2358 xy+yz+zx=N
ユーザー Navier_BoltzmannNavier_Boltzmann
提出日時 2023-06-23 22:34:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 353 ms / 2,000 ms
コード長 828 bytes
コンパイル時間 287 ms
コンパイル使用メモリ 82,404 KB
実行使用メモリ 95,616 KB
最終ジャッジ日時 2024-07-01 17:39:42
合計ジャッジ時間 3,149 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
55,296 KB
testcase_01 AC 46 ms
55,296 KB
testcase_02 AC 47 ms
55,808 KB
testcase_03 AC 47 ms
55,296 KB
testcase_04 AC 48 ms
55,936 KB
testcase_05 AC 46 ms
55,936 KB
testcase_06 AC 57 ms
62,908 KB
testcase_07 AC 89 ms
77,440 KB
testcase_08 AC 338 ms
94,592 KB
testcase_09 AC 353 ms
95,616 KB
testcase_10 AC 288 ms
84,160 KB
testcase_11 AC 298 ms
85,772 KB
testcase_12 AC 240 ms
80,640 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import *
from functools import *
from itertools import *
from heapq import *
import sys,math
input = sys.stdin.readline

N = int(input())
def f(M):
    
    tmp = []
    n = 1
    while n**2 < M:
        if M%n==0:
            tmp.append(n)
            tmp.append(M//n)
        n += 1
    if n**2==M:
        tmp.append(n)
    return tmp
    
def g(M,S):
    
    X = []
    for s in f(M+S**2):
        if s-S<0:
            continue
        t = (M+S**2)//s
        if t-S<0:
            continue
        X.append((s-S,t-S))
    return X

ans = []
M = math.ceil(math.sqrt(N)+1)
for i in range(M+1):
    if i**2>N:
        break
    
    for x,y in g(N,i):
        tmp = [i,x,y]
        for p in permutations(tmp):
            ans.append(tuple(p))
ans = set(ans)
print(len(ans))
for a in ans:
    print(*a)

    
0