結果
問題 | No.781 円周上の格子点の数え上げ |
ユーザー | chocorusk |
提出日時 | 2019-01-11 21:29:03 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 371 ms / 2,000 ms |
コード長 | 674 bytes |
コンパイル時間 | 969 ms |
コンパイル使用メモリ | 94,020 KB |
実行使用メモリ | 42,496 KB |
最終ジャッジ日時 | 2024-11-30 03:13:57 |
合計ジャッジ時間 | 9,574 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 355 ms
42,368 KB |
testcase_01 | AC | 359 ms
42,368 KB |
testcase_02 | AC | 356 ms
42,368 KB |
testcase_03 | AC | 363 ms
42,368 KB |
testcase_04 | AC | 359 ms
42,240 KB |
testcase_05 | AC | 356 ms
42,368 KB |
testcase_06 | AC | 357 ms
42,368 KB |
testcase_07 | AC | 356 ms
42,368 KB |
testcase_08 | AC | 357 ms
42,496 KB |
testcase_09 | AC | 364 ms
42,496 KB |
testcase_10 | AC | 360 ms
42,368 KB |
testcase_11 | AC | 358 ms
42,368 KB |
testcase_12 | AC | 363 ms
42,368 KB |
testcase_13 | AC | 371 ms
42,368 KB |
testcase_14 | AC | 358 ms
42,368 KB |
testcase_15 | AC | 355 ms
42,368 KB |
testcase_16 | AC | 355 ms
42,496 KB |
testcase_17 | AC | 368 ms
42,496 KB |
testcase_18 | AC | 363 ms
42,496 KB |
testcase_19 | AC | 360 ms
42,368 KB |
testcase_20 | AC | 360 ms
42,496 KB |
ソースコード
#include <cstdio> #include <cstring> #include <iostream> #include <string> #include <cmath> #include <bitset> #include <vector> #include <map> #include <set> #include <queue> #include <deque> #include <algorithm> #include <complex> #include <unordered_map> #include <unordered_set> #include <random> #include <cassert> using namespace std; typedef long long int ll; typedef pair<int, int> P; int main() { int ct[10000001]={}; for(int i=-4000; i<=4000; i++){ for(int j=-4000; j<=4000; j++){ if(i*i+j*j<=10000000){ ct[i*i+j*j]++; } } } int x, y; cin>>x>>y; int ans=ct[x]; for(int i=x+1; i<=y; i++){ ans=max(ans, ct[i]); } cout<<ans<<endl; return 0; }