結果
問題 | No.2358 xy+yz+zx=N |
ユーザー | Alex Wice |
提出日時 | 2023-06-23 22:20:53 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 164 ms / 2,000 ms |
コード長 | 576 bytes |
コンパイル時間 | 192 ms |
コンパイル使用メモリ | 82,688 KB |
実行使用メモリ | 84,932 KB |
最終ジャッジ日時 | 2024-07-01 17:35:36 |
合計ジャッジ時間 | 2,277 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 43 ms
51,840 KB |
testcase_01 | AC | 46 ms
52,480 KB |
testcase_02 | AC | 42 ms
51,840 KB |
testcase_03 | AC | 46 ms
52,452 KB |
testcase_04 | AC | 41 ms
52,096 KB |
testcase_05 | AC | 41 ms
52,096 KB |
testcase_06 | AC | 43 ms
52,864 KB |
testcase_07 | AC | 63 ms
68,736 KB |
testcase_08 | AC | 163 ms
84,932 KB |
testcase_09 | AC | 164 ms
84,608 KB |
testcase_10 | AC | 147 ms
79,808 KB |
testcase_11 | AC | 149 ms
80,948 KB |
testcase_12 | AC | 127 ms
77,952 KB |
ソースコード
N = int(input()) ans = [] for x in range(1, int(N**0.5) + 1): top = int((x * x + N) ** 0.5) - x for y in range(x, top + 1): numer = N - x * y if numer % (x + y) == 0: z = numer // (x + y) ans.append((x, y, z)) if N % x == 0: y = N // x if x <= y: ans.append((0, x, y)) fans = set() for x, y, z in ans: fans.add((x, y, z)) fans.add((x, z, y)) fans.add((y, x, z)) fans.add((y, z, x)) fans.add((z, x, y)) fans.add((z, y, x)) print(len(fans)) for t in fans: print(*t)