結果
問題 | No.800 四平方定理 |
ユーザー | ankiganbaro |
提出日時 | 2019-03-17 22:58:41 |
言語 | C++11 (gcc 11.4.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 726 bytes |
コンパイル時間 | 527 ms |
コンパイル使用メモリ | 73,692 KB |
実行使用メモリ | 10,624 KB |
最終ジャッジ日時 | 2024-07-08 01:33:33 |
合計ジャッジ時間 | 21,794 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 6 ms
10,624 KB |
testcase_01 | AC | 12 ms
5,376 KB |
testcase_02 | AC | 8 ms
5,376 KB |
testcase_03 | AC | 9 ms
5,376 KB |
testcase_04 | AC | 7 ms
5,376 KB |
testcase_05 | AC | 9 ms
5,376 KB |
testcase_06 | AC | 16 ms
5,376 KB |
testcase_07 | AC | 7 ms
5,376 KB |
testcase_08 | AC | 8 ms
5,376 KB |
testcase_09 | AC | 13 ms
5,376 KB |
testcase_10 | AC | 1,367 ms
5,376 KB |
testcase_11 | AC | 1,630 ms
5,376 KB |
testcase_12 | AC | 1,552 ms
5,376 KB |
testcase_13 | AC | 1,531 ms
5,376 KB |
testcase_14 | AC | 1,661 ms
5,376 KB |
testcase_15 | AC | 1,735 ms
5,376 KB |
testcase_16 | AC | 1,660 ms
5,376 KB |
testcase_17 | AC | 1,681 ms
5,376 KB |
testcase_18 | AC | 1,498 ms
5,376 KB |
testcase_19 | AC | 1,545 ms
5,376 KB |
testcase_20 | AC | 1 ms
5,376 KB |
testcase_21 | AC | 2 ms
5,376 KB |
testcase_22 | AC | 1,526 ms
5,376 KB |
testcase_23 | TLE | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
ソースコード
#include <iostream> #include <string> #include <set> #include <map> #include <vector> #include <queue> #include <algorithm> #include <bitset> #include <cstdlib> #include <cmath> #define INF 100000000 #define ll long long int using namespace std; int main(){ ll ans = 0; ll N,D; cin>>N>>D; for(int x=1;x<=N;x++){ for(int y=1;y<=x;y++){ for(int z=1;z<=y;z++){ ll test = x*x + y*y + z*z - D; if(test<=0) continue; double root = sqrt(test); if(root != int(root)) continue; if(root > N) continue; int cnt = 1; if(x==y) cnt++; if(y==z) cnt++; if(cnt==1) ans+=6; else if(cnt==2) ans += 3; else ans += 1; } } } cout<<ans<<endl; return 0; }