結果
問題 | No.800 四平方定理 |
ユーザー | hogeandfuga |
提出日時 | 2019-03-17 22:38:43 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 326 bytes |
コンパイル時間 | 172 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 177,500 KB |
最終ジャッジ日時 | 2024-07-08 00:50:16 |
合計ジャッジ時間 | 25,024 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 65 ms
18,452 KB |
testcase_01 | AC | 85 ms
13,360 KB |
testcase_02 | AC | 65 ms
13,212 KB |
testcase_03 | AC | 72 ms
13,084 KB |
testcase_04 | AC | 65 ms
13,084 KB |
testcase_05 | AC | 72 ms
13,336 KB |
testcase_06 | AC | 94 ms
15,796 KB |
testcase_07 | AC | 97 ms
15,924 KB |
testcase_08 | AC | 112 ms
15,920 KB |
testcase_09 | AC | 76 ms
13,232 KB |
testcase_10 | TLE | - |
testcase_11 | TLE | - |
testcase_12 | TLE | - |
testcase_13 | AC | 1,907 ms
94,268 KB |
testcase_14 | TLE | - |
testcase_15 | TLE | - |
testcase_16 | TLE | - |
testcase_17 | TLE | - |
testcase_18 | TLE | - |
testcase_19 | TLE | - |
testcase_20 | AC | 28 ms
10,624 KB |
testcase_21 | AC | 27 ms
10,880 KB |
testcase_22 | TLE | - |
testcase_23 | TLE | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
ソースコード
from collections import defaultdict n, d = map(int, input().split()) a = [] for i in range(1, n+1): a.append(i**2) cnt = defaultdict(int) for x in a: for y in a: cnt[x+y] += 1 ans = 0 for w in a: for z in a: if w + d <= z: break else: ans += cnt[w+d-z] print(ans)