結果

問題 No.2358 xy+yz+zx=N
ユーザー convexineqconvexineq
提出日時 2023-06-23 23:02:53
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 322 bytes
コンパイル時間 147 ms
コンパイル使用メモリ 82,372 KB
実行使用メモリ 71,508 KB
最終ジャッジ日時 2024-07-01 17:40:59
合計ジャッジ時間 2,382 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
58,720 KB
testcase_01 AC 43 ms
58,700 KB
testcase_02 AC 43 ms
58,040 KB
testcase_03 AC 45 ms
59,824 KB
testcase_04 AC 43 ms
59,364 KB
testcase_05 AC 44 ms
58,196 KB
testcase_06 AC 44 ms
58,680 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
m = 100
r = []
for x in range(0,m):
    for y in range(x,m):
        if x==y==0: continue
        p = n - x*y
        q = x+y
        if p%q: continue
        z = p//q
        if z < y: break
        r += list(set([(x,y,z),(y,z,x),(z,x,y),(z,y,x),(y,x,z),(x,z,y)]))
print(len(r))
for i in r:
    print(*i)
0