結果

問題 No.2358 xy+yz+zx=N
ユーザー ああいいああいい
提出日時 2023-07-01 19:50:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,560 ms / 2,000 ms
コード長 644 bytes
コンパイル時間 211 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 81,792 KB
最終ジャッジ日時 2024-07-08 05:39:21
合計ジャッジ時間 8,655 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
51,712 KB
testcase_01 AC 33 ms
51,712 KB
testcase_02 AC 38 ms
51,584 KB
testcase_03 AC 38 ms
52,096 KB
testcase_04 AC 35 ms
51,840 KB
testcase_05 AC 33 ms
51,712 KB
testcase_06 AC 42 ms
61,056 KB
testcase_07 AC 60 ms
71,040 KB
testcase_08 AC 1,560 ms
81,536 KB
testcase_09 AC 1,554 ms
81,792 KB
testcase_10 AC 1,534 ms
78,208 KB
testcase_11 AC 1,553 ms
78,508 KB
testcase_12 AC 1,218 ms
77,256 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())

ans = []
num = 0
for x in range(N + 1):
    for y in range(x,N + 1):
        t = x * y
        if t > N:break
        if x + y == 0:
            if t == N:
                num += 1
                ans.append((x,y,0))
                if x != y:
                    ans.append((y,x,0))
                    num += 1
                
        else:
            if (N - t) % (x +  y) == 0:
                num += 1
                z = (N - t) // (x + y)
                ans.append((x,y,z))
                if x != y:
                    ans.append((y,x,z))
                    num += 1
print(num)
for x,y,z in ans:
    print(x,y,z)
0