結果
問題 | No.800 四平方定理 |
ユーザー | sho_00 |
提出日時 | 2020-04-09 20:30:10 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 251 bytes |
コンパイル時間 | 100 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 87,984 KB |
最終ジャッジ日時 | 2024-09-13 20:19:50 |
合計ジャッジ時間 | 28,331 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 61 ms
16,768 KB |
testcase_01 | AC | 91 ms
12,032 KB |
testcase_02 | AC | 70 ms
11,392 KB |
testcase_03 | AC | 76 ms
11,520 KB |
testcase_04 | AC | 71 ms
11,392 KB |
testcase_05 | AC | 76 ms
11,520 KB |
testcase_06 | AC | 101 ms
12,288 KB |
testcase_07 | AC | 90 ms
12,416 KB |
testcase_08 | AC | 110 ms
14,064 KB |
testcase_09 | AC | 90 ms
11,776 KB |
testcase_10 | AC | 1,937 ms
45,204 KB |
testcase_11 | TLE | - |
testcase_12 | TLE | - |
testcase_13 | AC | 1,913 ms
43,300 KB |
testcase_14 | TLE | - |
testcase_15 | TLE | - |
testcase_16 | TLE | - |
testcase_17 | TLE | - |
testcase_18 | TLE | - |
testcase_19 | TLE | - |
testcase_20 | AC | 29 ms
10,624 KB |
testcase_21 | AC | 30 ms
10,752 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 | -- | - |
ソースコード
N,D=map(int,input().split()) L=[0]*(D+2*N**2) cnt=0 for i in range(1,N+1): for j in range(1,N+1): L[i**2+j**2-1]+=1 for z in range(1,N+1): for w in range(1,N+1): A=D+w**2-z**2 if A<=1: pass else: cnt+=L[A-1] print(cnt)