結果

問題 No.2358 xy+yz+zx=N
ユーザー Nikkuniku029Nikkuniku029
提出日時 2023-06-24 11:09:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 306 ms / 2,000 ms
コード長 521 bytes
コンパイル時間 246 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 84,352 KB
最終ジャッジ日時 2024-07-01 17:47:44
合計ジャッジ時間 2,898 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,224 KB
testcase_01 AC 44 ms
51,712 KB
testcase_02 AC 42 ms
51,712 KB
testcase_03 AC 41 ms
51,328 KB
testcase_04 AC 40 ms
51,712 KB
testcase_05 AC 40 ms
51,968 KB
testcase_06 AC 48 ms
57,984 KB
testcase_07 AC 82 ms
70,144 KB
testcase_08 AC 306 ms
83,456 KB
testcase_09 AC 306 ms
84,352 KB
testcase_10 AC 282 ms
79,104 KB
testcase_11 AC 288 ms
80,256 KB
testcase_12 AC 235 ms
77,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
S = set()
for x in range(N+1):
    if x**2 > N:
        break
    for y in range(N+1):
        if y**2 > N:
            break
        if x == 0 and y == 0:
            continue
        if (N-x*y) % (x+y) == 0:
            z = (N-x*y)//(x+y)
            if z >= 0:
                S.add((x, y, z))
                S.add((x, z, y))
                S.add((y, x, z))
                S.add((y, z, x))
                S.add((z, y, x))
                S.add((z, x, y))


print(len(S))
for c in S:
    print(*c)
0