結果
問題 | No.2358 xy+yz+zx=N |
ユーザー | とりゐ |
提出日時 | 2023-07-03 23:33:44 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 269 bytes |
コンパイル時間 | 236 ms |
コンパイル使用メモリ | 82,544 KB |
実行使用メモリ | 79,420 KB |
最終ジャッジ日時 | 2024-07-17 21:31:15 |
合計ジャッジ時間 | 2,729 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 33 ms
52,848 KB |
testcase_01 | AC | 32 ms
52,396 KB |
testcase_02 | AC | 33 ms
53,204 KB |
testcase_03 | AC | 35 ms
52,696 KB |
testcase_04 | AC | 36 ms
53,212 KB |
testcase_05 | AC | 37 ms
52,856 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
ソースコード
import itertools n=int(input()) ans=set() for x in range(0,int(n**0.34)+2): for y in range(1,int(n**0.5)+2): if (n-x*y)%(x+y)==0: z=(n-x*y)//(x+y) for p in itertools.permutations([x,y,z]): ans.add(p) print(len(ans)) for i in ans: print(*i)