結果

問題 No.2358 xy+yz+zx=N
ユーザー titiatitia
提出日時 2023-06-23 22:24:09
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 242 bytes
コンパイル時間 151 ms
コンパイル使用メモリ 82,060 KB
実行使用メモリ 87,540 KB
最終ジャッジ日時 2024-07-01 17:36:20
合計ジャッジ時間 4,321 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
58,628 KB
testcase_01 AC 38 ms
52,756 KB
testcase_02 AC 39 ms
51,928 KB
testcase_03 AC 38 ms
51,992 KB
testcase_04 AC 39 ms
53,152 KB
testcase_05 AC 39 ms
51,500 KB
testcase_06 AC 47 ms
61,648 KB
testcase_07 AC 72 ms
70,564 KB
testcase_08 TLE -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
ANS=[]

for x in range(N+1):
    for y in range(N+1):
        if x*y>N:
            break

        if x+y!=0 and (N-x*y)%(x+y)==0:
            ANS.append((x,y,(N-x*y)//(x+y)))

print(len(ANS))
for x,y,z in ANS:
    print(x,y,z)
0