結果

問題 No.2358 xy+yz+zx=N
ユーザー nikoro256nikoro256
提出日時 2023-06-23 22:31:56
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 581 bytes
コンパイル時間 2,147 ms
コンパイル使用メモリ 81,628 KB
実行使用メモリ 87,172 KB
最終ジャッジ日時 2024-07-01 17:39:20
合計ジャッジ時間 4,288 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,224 KB
testcase_01 AC 38 ms
52,200 KB
testcase_02 AC 38 ms
52,352 KB
testcase_03 WA -
testcase_04 AC 38 ms
52,352 KB
testcase_05 WA -
testcase_06 AC 40 ms
52,992 KB
testcase_07 AC 71 ms
70,912 KB
testcase_08 AC 531 ms
86,336 KB
testcase_09 AC 533 ms
87,172 KB
testcase_10 AC 510 ms
81,096 KB
testcase_11 AC 512 ms
81,920 KB
testcase_12 AC 409 ms
78,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
N=int(input())
lis=[]
for x in range(math.ceil(math.sqrt(N))):
    for y in range(x,math.ceil(math.sqrt(N))):
        if x==0 and y==0:
            continue
        #print(x,y)
        z=-1
        if (N-x*y)>0 and (N-x*y)/(x+y)%1==0:
            z=(N-x*y)//(x+y)
        elif N-x*y==0:
            z=0
        if z!=-1:
            lis.append((x,y,z))
            lis.append((x,z,y))
            lis.append((y,x,z))
            lis.append((y,z,x))
            lis.append((z,x,y))
            lis.append((z,y,x))
lis=set(lis)
print(len(lis))
for l in lis:
    print(*l)
0