結果

問題 No.2358 xy+yz+zx=N
ユーザー 陽ダンカン陽ダンカン
提出日時 2024-08-11 16:20:25
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 1,369 bytes
コンパイル時間 523 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 68,224 KB
最終ジャッジ日時 2024-08-11 16:20:29
合計ジャッジ時間 3,557 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 RE -
testcase_02 RE -
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

# cook your dish here
from collections import defaultdict,deque
from bisect import bisect_left,bisect_right
from itertools import accumulate,permutations,groupby
import sys
from math import gcd,isqrt
import heapq
import math
import string
#from sortedcontainers import SortedSet, SortedList, SortedDict
#import pulp
import random
from more_itertools import*
#from functools import cache
#import pypyjit
#pypyjit.set_param('max_unroll_recursion=-1')
#sys.setrecursionlimit(10**6)
#input=lambda :sys.stdin.readline()[:-1]
class ready():
    def getint(self):
        return int(input())
    def getflo(self):
        return float(input())
    def getmanyint(self):
        return map(int,input().split())
    def gettree(self,n):
        g=[[] for _ in range(n)]
        for _ in range(n-1):
            u,v,c=map(int,input().split())
            g[u-1].append([v-1,c])
            g[v-1].append([u-1,c])
        return g
R=ready()

#ここからコ―ド
n=int(input())
#z固定したらz^2<=n/3になったな。
#なのでz^2<=n//3<=>z<=isqrt(z//3)です。
ans=[]
sup=isqrt(n//3)
for z in range(sup+1):
    for y in range(z+1):
        if z==y==0:
            continue
        if (n-z*y)%(z+y)==0:
            temp=list(distinct_permutations([z,y,(n-z*y)//(y+z)]))
            for k in temp:
                ans.append(k)
print(len(ans))
for a in ans:
    print(*a)
0