結果

問題 No.2358 xy+yz+zx=N
ユーザー ゼットゼット
提出日時 2024-02-17 09:21:14
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 382 bytes
コンパイル時間 145 ms
コンパイル使用メモリ 82,208 KB
実行使用メモリ 87,620 KB
最終ジャッジ日時 2024-09-28 23:34:18
合計ジャッジ時間 4,585 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
59,244 KB
testcase_01 AC 42 ms
52,760 KB
testcase_02 AC 41 ms
53,884 KB
testcase_03 AC 36 ms
53,308 KB
testcase_04 AC 36 ms
53,428 KB
testcase_05 AC 36 ms
52,268 KB
testcase_06 AC 46 ms
60,512 KB
testcase_07 AC 70 ms
71,796 KB
testcase_08 TLE -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
result=[]
for x in range(1,N):
  for y in range(1,N):
    if x*y>=N:
      break
    k=N-x*y
    if k%(x+y)==0:
      z=k//(x+y)
      result.append((x,y,z))
for a in range(1,N+1):
  if N%a==0:
    result.append((0,a,N//a))
    result.append((a,0,N//a))
    result.append((a,N//a,0))
print(len(result))
for i in range(len(result)):
  a,b,c=result[i][:]
  print(a,b,c)
0