結果

問題 No.2358 xy+yz+zx=N
ユーザー ニックネームニックネーム
提出日時 2023-06-23 22:05:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 190 ms / 2,000 ms
コード長 312 bytes
コンパイル時間 252 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 82,304 KB
最終ジャッジ日時 2024-07-01 17:33:16
合計ジャッジ時間 2,489 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
52,096 KB
testcase_01 AC 42 ms
52,352 KB
testcase_02 AC 43 ms
52,480 KB
testcase_03 AC 43 ms
51,968 KB
testcase_04 AC 44 ms
51,840 KB
testcase_05 AC 42 ms
52,224 KB
testcase_06 AC 45 ms
52,812 KB
testcase_07 AC 75 ms
69,888 KB
testcase_08 AC 189 ms
81,964 KB
testcase_09 AC 190 ms
82,304 KB
testcase_10 AC 175 ms
79,024 KB
testcase_11 AC 177 ms
79,872 KB
testcase_12 AC 150 ms
77,764 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import permutations
n = int(input())
ans = set()
for x in range(0,int(n**0.5)+1):
    for y in range(max(x,1),int(n**0.5)+1):
        if (n-x*y)%(x+y)==0:
            z = (n-x*y)//(x+y)
            if y>z: break
            ans |= set(permutations((x,y,z)))
print(len(ans))
for p in ans: print(*p)
0