結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,456 KB
testcase_01 AC 41 ms
51,712 KB
testcase_02 AC 40 ms
51,712 KB
testcase_03 WA -
testcase_04 AC 39 ms
51,456 KB
testcase_05 AC 39 ms
52,224 KB
testcase_06 AC 46 ms
58,240 KB
testcase_07 AC 69 ms
70,656 KB
testcase_08 AC 295 ms
83,712 KB
testcase_09 AC 297 ms
84,608 KB
testcase_10 AC 268 ms
78,976 KB
testcase_11 AC 275 ms
80,000 KB
testcase_12 AC 225 ms
77,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
S = set()
for x in range(N):
    if x**2 > N:
        break
    for y in range(N):
        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