結果

問題 No.2358 xy+yz+zx=N
ユーザー とりゐとりゐ
提出日時 2023-07-03 23:35:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 311 ms / 2,000 ms
コード長 289 bytes
コンパイル時間 168 ms
コンパイル使用メモリ 82,316 KB
実行使用メモリ 82,300 KB
最終ジャッジ日時 2024-07-17 21:33:25
合計ジャッジ時間 3,104 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
53,268 KB
testcase_01 AC 40 ms
53,608 KB
testcase_02 AC 43 ms
53,452 KB
testcase_03 AC 44 ms
53,140 KB
testcase_04 AC 43 ms
52,984 KB
testcase_05 AC 41 ms
53,928 KB
testcase_06 AC 46 ms
59,988 KB
testcase_07 AC 73 ms
71,476 KB
testcase_08 AC 309 ms
81,824 KB
testcase_09 AC 311 ms
82,300 KB
testcase_10 AC 269 ms
79,012 KB
testcase_11 AC 278 ms
79,680 KB
testcase_12 AC 222 ms
77,936 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import itertools

n=int(input())
ans=set()
for x in range(0,int(n**0.5)+10):
  for y in range(1,int(n**0.5)+10):
    if (n-x*y)%(x+y)==0:
      z=(n-x*y)//(x+y)
      if z>=0:
        for p in itertools.permutations([x,y,z]):
          ans.add(p)

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