結果

問題 No.2358 xy+yz+zx=N
ユーザー FromBooskaFromBooska
提出日時 2024-03-21 18:46:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 188 ms / 2,000 ms
コード長 670 bytes
コンパイル時間 360 ms
コンパイル使用メモリ 82,268 KB
実行使用メモリ 84,736 KB
最終ジャッジ日時 2024-09-30 10:12:46
合計ジャッジ時間 2,362 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,712 KB
testcase_01 AC 41 ms
52,224 KB
testcase_02 AC 40 ms
51,584 KB
testcase_03 AC 36 ms
51,328 KB
testcase_04 AC 35 ms
51,328 KB
testcase_05 AC 34 ms
51,584 KB
testcase_06 AC 41 ms
52,480 KB
testcase_07 AC 61 ms
71,168 KB
testcase_08 AC 186 ms
83,840 KB
testcase_09 AC 188 ms
84,736 KB
testcase_10 AC 169 ms
79,360 KB
testcase_11 AC 171 ms
80,128 KB
testcase_12 AC 140 ms
77,440 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# 真ん中全探索、因数分解、約数列挙でACしたがテスター方法もやってみる
# sqrtNは小さいので二重ループ可能

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