結果
問題 | No.781 円周上の格子点の数え上げ |
ユーザー | cotton_fn_ |
提出日時 | 2020-02-10 02:38:12 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 823 bytes |
コンパイル時間 | 1,028 ms |
コンパイル使用メモリ | 119,496 KB |
実行使用メモリ | 13,640 KB |
最終ジャッジ日時 | 2024-10-01 06:10:37 |
合計ジャッジ時間 | 4,625 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
13,640 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 1 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | AC | 9 ms
5,248 KB |
testcase_07 | AC | 20 ms
5,760 KB |
testcase_08 | TLE | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
ソースコード
#include <iostream> #include <cstdio> #include <cstring> #include <vector> #include <deque> #include <queue> #include <array> #include <set> #include <map> #include <cmath> #include <complex> #include <algorithm> #include <numeric> #include <utility> #include <tuple> #include <bitset> #include <cstdint> #include <cassert> #include <random> #include <iterator> using namespace std; using i64 = int64_t; using i32 = int32_t; int main() { i64 x, y; cin >> x >> y; map<i64, i64> mp; for (i64 i = 0; i * i <= max(x, y); ++i) { for (i64 j = 1; j * j <= max(x, y); ++j) { mp[i * i + j * j]++; } } i64 ans = 0; for (auto p : mp) { i64 k, c; tie(k, c) = p; if (x <= k && k <= y) ans = max(ans, c); } cout << 4 * ans << endl; return 0; }