結果
問題 | No.800 四平方定理 |
ユーザー | Mayimg |
提出日時 | 2019-03-17 22:19:11 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 538 bytes |
コンパイル時間 | 2,213 ms |
コンパイル使用メモリ | 208,740 KB |
実行使用メモリ | 62,080 KB |
最終ジャッジ日時 | 2024-07-07 23:58:00 |
合計ジャッジ時間 | 19,289 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 9 ms
12,192 KB |
testcase_01 | AC | 17 ms
6,940 KB |
testcase_02 | AC | 13 ms
6,944 KB |
testcase_03 | AC | 13 ms
6,944 KB |
testcase_04 | AC | 12 ms
6,940 KB |
testcase_05 | AC | 13 ms
6,940 KB |
testcase_06 | AC | 19 ms
6,940 KB |
testcase_07 | AC | 17 ms
6,940 KB |
testcase_08 | AC | 16 ms
6,940 KB |
testcase_09 | AC | 16 ms
6,944 KB |
testcase_10 | AC | 1,146 ms
30,464 KB |
testcase_11 | AC | 1,235 ms
33,920 KB |
testcase_12 | AC | 1,273 ms
33,280 KB |
testcase_13 | AC | 1,011 ms
31,744 KB |
testcase_14 | AC | 1,088 ms
33,920 KB |
testcase_15 | AC | 1,274 ms
33,536 KB |
testcase_16 | AC | 1,109 ms
34,048 KB |
testcase_17 | AC | 1,091 ms
34,176 KB |
testcase_18 | AC | 1,462 ms
34,048 KB |
testcase_19 | AC | 1,463 ms
34,176 KB |
testcase_20 | AC | 2 ms
5,376 KB |
testcase_21 | AC | 1 ms
5,376 KB |
testcase_22 | AC | 1,481 ms
34,304 KB |
testcase_23 | TLE | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
ソースコード
#define _USE_MATH_DEFINES #include <bits/stdc++.h> using namespace std; signed main() { ios::sync_with_stdio(false); cin.tie(0); int n, d; cin >> n >> d; map<int, int> mp; for (int x = 1; x <= n; x++) { for (int y = 1; y <= n; y++) { mp[x * x + y * y]++; } } int ans = 0; for (int w = 1; w <= n; w++) { for (int z = 1; z <= n; z++) { int res = d + w * w - z * z; if (res < 2) continue; if (mp.count(res)) { ans += mp[res]; } } } cout << ans << endl; return 0; }