結果

問題 No.2358 xy+yz+zx=N
ユーザー flippergoflippergo
提出日時 2024-11-27 07:59:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 196 ms / 2,000 ms
コード長 431 bytes
コンパイル時間 723 ms
コンパイル使用メモリ 82,168 KB
実行使用メモリ 85,168 KB
最終ジャッジ日時 2024-11-27 07:59:03
合計ジャッジ時間 3,159 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,332 KB
testcase_01 AC 34 ms
52,476 KB
testcase_02 AC 35 ms
52,264 KB
testcase_03 AC 34 ms
52,216 KB
testcase_04 AC 33 ms
52,140 KB
testcase_05 AC 32 ms
52,796 KB
testcase_06 AC 35 ms
53,712 KB
testcase_07 AC 66 ms
70,284 KB
testcase_08 AC 196 ms
84,148 KB
testcase_09 AC 181 ms
85,168 KB
testcase_10 AC 161 ms
79,336 KB
testcase_11 AC 160 ms
80,332 KB
testcase_12 AC 135 ms
77,488 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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