結果

問題 No.2358 xy+yz+zx=N
ユーザー timitimi
提出日時 2023-07-05 23:12:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 192 ms / 2,000 ms
コード長 674 bytes
コンパイル時間 1,180 ms
コンパイル使用メモリ 81,956 KB
実行使用メモリ 85,760 KB
最終ジャッジ日時 2024-07-19 17:38:50
合計ジャッジ時間 3,055 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
51,840 KB
testcase_01 AC 38 ms
52,224 KB
testcase_02 AC 37 ms
52,096 KB
testcase_03 AC 36 ms
52,224 KB
testcase_04 AC 34 ms
52,352 KB
testcase_05 AC 36 ms
52,096 KB
testcase_06 AC 36 ms
58,240 KB
testcase_07 AC 60 ms
71,040 KB
testcase_08 AC 190 ms
85,120 KB
testcase_09 AC 192 ms
85,760 KB
testcase_10 AC 163 ms
79,664 KB
testcase_11 AC 167 ms
81,152 KB
testcase_12 AC 138 ms
77,908 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
ans=[]
def make_divisors(n):
    lower_divisors , upper_divisors = [], []
    i = 1
    while i*i <= n:
        if n % i == 0:
            lower_divisors.append(i)
            if i != n // i:
                upper_divisors.append(n//i)
        i += 1
    return lower_divisors + upper_divisors[::-1]
  
for x in range(N+1):
  if x>(N/3)**0.5:
    break
  A=make_divisors(N+x**2)
  for a in A:
    b=(N+x**2)//a
    y,z=a-x,b-x
    if x<=y and y<=z:
      ans.append((x,y,z))
      ans.append((x,z,y))
      ans.append((y,x,z))
      ans.append((y,z,x))
      ans.append((z,x,y))
      ans.append((z,y,x))
ans=set(ans)
print(len(ans))
for i in ans:
  print(*i)
0