結果
問題 | No.800 四平方定理 |
ユーザー | H20 |
提出日時 | 2020-11-19 09:44:00 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 544 bytes |
コンパイル時間 | 152 ms |
コンパイル使用メモリ | 82,156 KB |
実行使用メモリ | 284,760 KB |
最終ジャッジ日時 | 2024-07-23 09:45:22 |
合計ジャッジ時間 | 5,392 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 113 ms
91,440 KB |
testcase_01 | AC | 163 ms
94,980 KB |
testcase_02 | AC | 132 ms
88,840 KB |
testcase_03 | AC | 143 ms
90,756 KB |
testcase_04 | AC | 128 ms
87,312 KB |
testcase_05 | AC | 137 ms
90,388 KB |
testcase_06 | AC | 185 ms
99,836 KB |
testcase_07 | AC | 155 ms
93,068 KB |
testcase_08 | AC | 173 ms
99,684 KB |
testcase_09 | AC | 170 ms
95,712 KB |
testcase_10 | TLE | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
ソースコード
import collections N,D=map(int, input().split()) Square = [] P = [] M = [] for i in range(N+1): Square.append(i**2) for i in range(1,N+1): for j in range(1,N+1): P.append(Square[i]+Square[j]) M.append(Square[i]-Square[j]) P=collections.Counter(P) M=collections.Counter(M) P = sorted( P.items() ) M = sorted( M.items() ) j = len(M)-1 ans = 0 mk,mv=M[j] for pk, pv in P: while mk+pk > D and j>=0: j-=1 mk,mv=M[j] if mk+pk==D: ans += mv*pv j-=1 mk,mv=M[j] print(ans)