結果

問題 No.2358 xy+yz+zx=N
ユーザー miya145592miya145592
提出日時 2023-06-23 23:24:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 202 ms / 2,000 ms
コード長 452 bytes
コンパイル時間 155 ms
コンパイル使用メモリ 82,456 KB
実行使用メモリ 85,888 KB
最終ジャッジ日時 2024-07-01 17:43:16
合計ジャッジ時間 2,302 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,456 KB
testcase_01 AC 42 ms
51,712 KB
testcase_02 AC 42 ms
52,352 KB
testcase_03 AC 39 ms
52,224 KB
testcase_04 AC 41 ms
51,456 KB
testcase_05 AC 38 ms
51,968 KB
testcase_06 AC 42 ms
52,992 KB
testcase_07 AC 64 ms
68,992 KB
testcase_08 AC 201 ms
84,736 KB
testcase_09 AC 202 ms
85,888 KB
testcase_10 AC 181 ms
79,616 KB
testcase_11 AC 187 ms
80,768 KB
testcase_12 AC 147 ms
77,568 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
N = int(input())

S = set()
for x in range(int(math.sqrt(N))+1):
    for y in range(max(1, x), int(math.sqrt(N))+1):
        if (N-x*y)%(y+x)==0:
            z = (N-x*y)//(y+x)
            S.add((x, y, z))
#print(S)

ans = set()
for x, y, z in S:
    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 a in ans:
    print(*a)
0