結果
問題 | No.800 四平方定理 |
ユーザー | 37zigen |
提出日時 | 2019-03-17 21:58:04 |
言語 | C++11 (gcc 11.4.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 504 bytes |
コンパイル時間 | 1,523 ms |
コンパイル使用メモリ | 165,580 KB |
実行使用メモリ | 44,416 KB |
最終ジャッジ日時 | 2024-07-07 22:36:17 |
合計ジャッジ時間 | 27,398 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 13 ms
10,752 KB |
testcase_01 | AC | 27 ms
5,376 KB |
testcase_02 | AC | 19 ms
5,376 KB |
testcase_03 | AC | 20 ms
5,376 KB |
testcase_04 | AC | 17 ms
5,376 KB |
testcase_05 | AC | 20 ms
5,376 KB |
testcase_06 | AC | 31 ms
5,376 KB |
testcase_07 | AC | 24 ms
5,376 KB |
testcase_08 | AC | 25 ms
5,376 KB |
testcase_09 | AC | 27 ms
5,376 KB |
testcase_10 | AC | 1,866 ms
39,552 KB |
testcase_11 | TLE | - |
testcase_12 | TLE | - |
testcase_13 | AC | 1,796 ms
41,344 KB |
testcase_14 | AC | 1,928 ms
44,032 KB |
testcase_15 | TLE | - |
testcase_16 | AC | 1,967 ms
44,288 KB |
testcase_17 | TLE | - |
testcase_18 | TLE | - |
testcase_19 | TLE | - |
testcase_20 | AC | 1 ms
6,944 KB |
testcase_21 | AC | 2 ms
6,944 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 | -- | - |
ソースコード
#include <bits/stdc++.h> int main(){ int N; long long D; std::cin>>N>>D; std::map<long long, int> mp1; for(long long x=1;x<=N;++x){ for(long long y=1;y<=N;++y){ if(mp1.find(x*x+y*y)==mp1.end()){ mp1[x*x+y*y]=1; }else{ ++mp1[x*x+y*y]; } } } long long ans=0; for(long long z=1;z<=N;++z){ for(long long w=1;w<=N;++w){ if(mp1.find(w*w+D-z*z)!=mp1.end()){ ans +=mp1[w*w+D-z*z]; } } } std::cout<<ans<<std::endl; return 0; }