結果

問題 No.2358 xy+yz+zx=N
ユーザー komkompikomkompi
提出日時 2023-07-15 06:28:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,104 ms / 2,000 ms
コード長 502 bytes
コンパイル時間 157 ms
コンパイル使用メモリ 82,224 KB
実行使用メモリ 82,760 KB
最終ジャッジ日時 2024-09-16 14:53:07
合計ジャッジ時間 13,732 ms
ジャッジサーバーID
(参考情報)
judge6 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 805 ms
75,776 KB
testcase_01 AC 803 ms
76,080 KB
testcase_02 AC 804 ms
75,764 KB
testcase_03 AC 805 ms
75,844 KB
testcase_04 AC 804 ms
76,052 KB
testcase_05 AC 801 ms
76,388 KB
testcase_06 AC 843 ms
76,420 KB
testcase_07 AC 864 ms
77,048 KB
testcase_08 AC 1,104 ms
81,960 KB
testcase_09 AC 1,098 ms
82,760 KB
testcase_10 AC 1,064 ms
79,156 KB
testcase_11 AC 1,066 ms
79,656 KB
testcase_12 AC 1,029 ms
77,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# coding: utf-8
# Your code here!
N=int(input())

#xy+yz+zx=(N-x**2-y**2-z**2)/2
ITER=3400

ans=set()
for x in range(ITER):
    for y in range(ITER):
        if x+y==0:
            continue

        z=(N-x*y)/(x+y)
        if z==z//1 and z>=0:
            z=int(z)
            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 item in ans:
    print(*item)
0