結果
問題 | No.800 四平方定理 |
ユーザー | titiy |
提出日時 | 2019-03-28 13:05:03 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 234 bytes |
コンパイル時間 | 235 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 265,304 KB |
最終ジャッジ日時 | 2024-10-12 19:01:35 |
合計ジャッジ時間 | 27,665 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 146 ms
80,000 KB |
testcase_01 | AC | 170 ms
76,360 KB |
testcase_02 | AC | 151 ms
75,392 KB |
testcase_03 | AC | 159 ms
75,756 KB |
testcase_04 | AC | 150 ms
75,312 KB |
testcase_05 | AC | 156 ms
75,708 KB |
testcase_06 | AC | 175 ms
76,584 KB |
testcase_07 | AC | 171 ms
75,776 KB |
testcase_08 | AC | 188 ms
76,544 KB |
testcase_09 | AC | 168 ms
76,504 KB |
testcase_10 | AC | 1,804 ms
165,516 KB |
testcase_11 | AC | 1,899 ms
175,120 KB |
testcase_12 | AC | 1,990 ms
173,716 KB |
testcase_13 | AC | 1,745 ms
169,016 KB |
testcase_14 | AC | 1,838 ms
175,120 KB |
testcase_15 | AC | 1,997 ms
174,688 KB |
testcase_16 | AC | 1,869 ms
176,096 KB |
testcase_17 | AC | 1,859 ms
176,012 KB |
testcase_18 | TLE | - |
testcase_19 | TLE | - |
testcase_20 | AC | 116 ms
73,088 KB |
testcase_21 | AC | 116 ms
73,088 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()) cnt=[0]*8000001 ans=0 for i in [i*i-j*j+d for i in range(1,n+1) for j in range(1,n+1)if i*i-j*j+d>0]: cnt[i]+=1 for x in [i*i+j*j for i in range(1,n+1)for j in range(1,n+1)]: ans+=cnt[x] print(ans)