結果
問題 | No.781 円周上の格子点の数え上げ |
ユーザー | xxxasdfghjk |
提出日時 | 2019-02-23 17:37:46 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 389 bytes |
コンパイル時間 | 1,373 ms |
コンパイル使用メモリ | 157,532 KB |
実行使用メモリ | 42,496 KB |
最終ジャッジ日時 | 2024-05-07 18:35:45 |
合計ジャッジ時間 | 6,023 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | AC | 163 ms
42,368 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 166 ms
42,496 KB |
testcase_08 | WA | - |
testcase_09 | AC | 164 ms
42,368 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; typedef long long int ll; int mem[10000001]; int main(){ int x,y,res=0; cin >> x >> y; for(int i=0;i<10000001;i++)mem[i] = 0; for(int i=0;i<4001;i++)for(int j=0;j<4001;j++){ if(i*i+j*j <= 10000001) mem[i*i+j*j]++; } for(int i=x;i<=y;i++)res = max(res,mem[i]); cout << res << endl; return 0; }