結果

問題 No.2358 xy+yz+zx=N
ユーザー chankei271828chankei271828
提出日時 2023-06-24 00:15:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,660 ms / 2,000 ms
コード長 500 bytes
コンパイル時間 232 ms
コンパイル使用メモリ 82,368 KB
実行使用メモリ 84,352 KB
最終ジャッジ日時 2024-07-01 17:43:58
合計ジャッジ時間 9,453 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,200 KB
testcase_01 AC 38 ms
51,456 KB
testcase_02 AC 38 ms
51,840 KB
testcase_03 AC 41 ms
52,088 KB
testcase_04 AC 38 ms
51,840 KB
testcase_05 AC 38 ms
51,712 KB
testcase_06 AC 46 ms
58,880 KB
testcase_07 AC 74 ms
71,680 KB
testcase_08 AC 1,649 ms
83,456 KB
testcase_09 AC 1,660 ms
84,352 KB
testcase_10 AC 1,626 ms
78,976 KB
testcase_11 AC 1,631 ms
80,128 KB
testcase_12 AC 1,259 ms
77,748 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
#xy+yz+zx=N
#x<=y<=zで探索
ans=set()
for x in range(N+1):
    if 3*x**2>N:
        break
    for y in range(x,N+1):
        if x==0 and y==0:
            continue
        if x*y>N:
            break
        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 tup in ans:
    print(*tup)
0