結果

問題 No.2358 xy+yz+zx=N
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2023-06-23 22:55:29
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 742 bytes
コンパイル時間 171 ms
コンパイル使用メモリ 82,524 KB
実行使用メモリ 81,464 KB
最終ジャッジ日時 2024-07-01 17:40:46
合計ジャッジ時間 3,253 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
51,712 KB
testcase_01 AC 40 ms
52,268 KB
testcase_02 AC 39 ms
52,480 KB
testcase_03 WA -
testcase_04 AC 39 ms
52,224 KB
testcase_05 AC 39 ms
52,352 KB
testcase_06 AC 47 ms
60,032 KB
testcase_07 AC 70 ms
71,424 KB
testcase_08 AC 353 ms
81,412 KB
testcase_09 AC 355 ms
81,464 KB
testcase_10 AC 343 ms
77,952 KB
testcase_11 AC 340 ms
78,220 KB
testcase_12 AC 278 ms
77,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())

ans = []


### x < y < z
for x in range(N):
    for y in range(x+1,N+1):
        if 2*x*y + y*y > N:
            break

        n = N - x*y
        if n%(x+y):
            continue
        z = n // (x+y)
        if z <= y:
            continue
        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])


### x = y ,z

for x in range(1,N):
    
    n = N - x**2

    if n < 0 or n%(x+x):
        continue

    z = n // (x+x)

    if z == x:
        ans.append([x,x,x])
    else:
        ans.append([x,x,z])
        ans.append([x,z,x])
        ans.append([z,x,x])


print(len(ans))
for x,y,z in ans:
    print(x,y,z)
0