結果

問題 No.2358 xy+yz+zx=N
ユーザー Basin-BugBasin-Bug
提出日時 2023-07-12 11:35:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 222 ms / 2,000 ms
コード長 615 bytes
コンパイル時間 441 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 95,040 KB
最終ジャッジ日時 2024-09-14 01:35:56
合計ジャッジ時間 2,926 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,480 KB
testcase_01 AC 39 ms
52,352 KB
testcase_02 AC 39 ms
52,864 KB
testcase_03 AC 39 ms
52,096 KB
testcase_04 AC 38 ms
52,736 KB
testcase_05 AC 40 ms
52,480 KB
testcase_06 AC 41 ms
53,248 KB
testcase_07 AC 70 ms
72,960 KB
testcase_08 AC 220 ms
93,392 KB
testcase_09 AC 222 ms
95,040 KB
testcase_10 AC 184 ms
82,304 KB
testcase_11 AC 188 ms
84,748 KB
testcase_12 AC 152 ms
78,720 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())

cnt = 0
ans = []
for x in range(int(pow(N, 0.5)) + 1):
  for y in range(x + 1):
    if x == y == 0:
      continue
    if (N - x * y) % (x + y) == 0 and (N - x * y) / (x + y) >= 0:
      ans.append([x, y, (N - x * y) // (x + y)])
      ans.append([y, x, (N - x * y) // (x + y)])
      ans.append([x, (N - x * y) // (x + y), y])
      ans.append([y, (N - x * y) // (x + y), x])
      ans.append([(N - x * y) // (x + y), x, y])
      ans.append([(N - x * y) // (x + y), y, x])
ans = list(map(list, set(map(tuple, ans))))
print(len(ans))
for i in range(len(ans)):
  print(*ans[i])
0