結果

問題 No.2358 xy+yz+zx=N
ユーザー hiro1729hiro1729
提出日時 2023-09-01 19:53:02
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 359 bytes
コンパイル時間 215 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 15,940 KB
最終ジャッジ日時 2024-06-11 02:40:34
合計ジャッジ時間 11,035 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,752 KB
testcase_01 AC 27 ms
10,624 KB
testcase_02 AC 25 ms
10,624 KB
testcase_03 AC 26 ms
10,752 KB
testcase_04 AC 26 ms
10,624 KB
testcase_05 AC 25 ms
10,752 KB
testcase_06 AC 26 ms
10,752 KB
testcase_07 AC 33 ms
11,136 KB
testcase_08 AC 1,841 ms
15,804 KB
testcase_09 TLE -
testcase_10 AC 1,831 ms
12,672 KB
testcase_11 AC 1,911 ms
12,800 KB
testcase_12 AC 1,510 ms
11,776 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
ans = set()
for x in range(int(n ** 0.5) + 1):
	for y in range(x, int(n ** 0.5) + 1):
		if x + y != 0 and (n - x * y) % (x + y) == 0:
			z = (n - x * y) // (x + y)
			ans.add((x, y, z))
			ans.add((x, z, y))
			ans.add((y, x, z))
			ans.add((y, z, x))
			ans.add((z, x, y))
			ans.add((z, y, x))
print(len(ans))
for i in list(ans):
	print(*i)
0