結果
問題 | No.2358 xy+yz+zx=N |
ユーザー | lloyz |
提出日時 | 2023-06-23 23:03:33 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 1,689 ms / 2,000 ms |
コード長 | 588 bytes |
コンパイル時間 | 161 ms |
コンパイル使用メモリ | 82,176 KB |
実行使用メモリ | 83,072 KB |
最終ジャッジ日時 | 2024-07-01 17:42:57 |
合計ジャッジ時間 | 9,344 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 39 ms
51,840 KB |
testcase_01 | AC | 40 ms
51,968 KB |
testcase_02 | AC | 40 ms
52,096 KB |
testcase_03 | AC | 39 ms
52,224 KB |
testcase_04 | AC | 40 ms
52,224 KB |
testcase_05 | AC | 40 ms
51,840 KB |
testcase_06 | AC | 48 ms
59,136 KB |
testcase_07 | AC | 80 ms
71,680 KB |
testcase_08 | AC | 1,689 ms
82,688 KB |
testcase_09 | AC | 1,631 ms
83,072 KB |
testcase_10 | AC | 1,672 ms
78,848 KB |
testcase_11 | AC | 1,609 ms
80,256 KB |
testcase_12 | AC | 1,252 ms
77,440 KB |
ソースコード
from math import sqrt from itertools import permutations n = int(input()) ANS = set() th1 = n // 3 th2 = (n + 2) // 3 for x in range(n + 1): if x**2 > th1: break for z in range(max(int(sqrt(th2)) - 5, x), n + 1): res = n - x * z if res < 0: break if x + z > 0 and res % (x + z) == 0: y = res // (x + z) if x <= y <= z: L = [x, y, z] for P in permutations(range(3)): ANS.add((L[P[0]], L[P[1]], L[P[2]])) print(len(ANS)) for x, y, z in ANS: print(x, y, z)