結果

問題 No.2358 xy+yz+zx=N
ユーザー convexineqconvexineq
提出日時 2023-06-23 23:04:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 248 ms / 2,000 ms
コード長 323 bytes
コンパイル時間 212 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 82,048 KB
最終ジャッジ日時 2024-07-01 17:42:39
合計ジャッジ時間 3,757 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 164 ms
59,776 KB
testcase_01 AC 156 ms
59,776 KB
testcase_02 AC 169 ms
60,160 KB
testcase_03 AC 169 ms
60,544 KB
testcase_04 AC 161 ms
59,776 KB
testcase_05 AC 160 ms
59,904 KB
testcase_06 AC 159 ms
60,288 KB
testcase_07 AC 169 ms
73,472 KB
testcase_08 AC 248 ms
81,408 KB
testcase_09 AC 244 ms
82,048 KB
testcase_10 AC 234 ms
78,720 KB
testcase_11 AC 235 ms
79,104 KB
testcase_12 AC 229 ms
77,312 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
m = 4000
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