結果
問題 | No.781 円周上の格子点の数え上げ |
ユーザー | beet |
提出日時 | 2019-01-11 21:41:59 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 620 bytes |
コンパイル時間 | 1,965 ms |
コンパイル使用メモリ | 205,724 KB |
実行使用メモリ | 333,412 KB |
最終ジャッジ日時 | 2024-05-07 12:32:13 |
合計ジャッジ時間 | 11,427 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 112 ms
237,584 KB |
testcase_01 | WA | - |
testcase_02 | AC | 112 ms
237,536 KB |
testcase_03 | AC | 111 ms
237,576 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 119 ms
239,112 KB |
testcase_08 | WA | - |
testcase_09 | AC | 1,029 ms
333,268 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
ソースコード
#include<bits/stdc++.h> using namespace std; using Int = long long; template<typename T1,typename T2> inline void chmin(T1 &a,T2 b){if(a>b) a=b;} template<typename T1,typename T2> inline void chmax(T1 &a,T2 b){if(a<b) a=b;} //INSERT ABOVE HERE signed main(){ Int x,y; cin>>x>>y; const Int MAX = 1e7+100; using P = pair<Int, Int>; vector<vector<P> > sp(MAX); for(Int i=0;i*i<=y;i++){ for(Int j=0;j<i;j++){ if(i*i+j*j>=MAX) continue; sp[i*i+j*j].emplace_back(i,j); } } Int ans=0; for(Int i=x;i<=y;i++){ chmax(ans,(Int)sp[i].size()*4); } cout<<ans<<endl; return 0; }