結果

問題 No.2358 xy+yz+zx=N
ユーザー shogo314shogo314
提出日時 2023-06-23 23:22:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 152 ms / 2,000 ms
コード長 883 bytes
コンパイル時間 183 ms
コンパイル使用メモリ 82,460 KB
実行使用メモリ 82,304 KB
最終ジャッジ日時 2024-07-01 17:43:11
合計ジャッジ時間 2,254 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,840 KB
testcase_01 AC 38 ms
52,096 KB
testcase_02 AC 38 ms
51,712 KB
testcase_03 AC 38 ms
51,712 KB
testcase_04 AC 38 ms
51,840 KB
testcase_05 AC 38 ms
52,096 KB
testcase_06 AC 39 ms
52,480 KB
testcase_07 AC 62 ms
67,584 KB
testcase_08 AC 152 ms
81,792 KB
testcase_09 AC 148 ms
82,304 KB
testcase_10 AC 131 ms
77,440 KB
testcase_11 AC 134 ms
78,208 KB
testcase_12 AC 115 ms
77,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
ans = []
for x in range(N+1):
    if 3*x*x > N:
        break
    for y in range(x, N+1):
        if x*y+y*y+y*x > N:
            break
        if y==0:
            continue
        if (N-x*y)%(x+y)==0:
            z=(N-x*y)//(x+y)
            if x == y == z:
                ans.append((x, y, z))
            elif x == y:
                ans.append((x, y, z))
                ans.append((x, z, y))
                ans.append((z, x, y))
            elif y == z:
                ans.append((x, y, z))
                ans.append((y, x, z))
                ans.append((y, z, x))
            else:
                ans.append((x, y, z))
                ans.append((x, z, y))
                ans.append((y, x, z))
                ans.append((y, z, x))
                ans.append((z, x, y))
                ans.append((z, y, x))
print(len(ans))
for a in ans:
    print(*a)
0