結果
問題 | No.800 四平方定理 |
ユーザー | Pachicobue |
提出日時 | 2019-03-17 21:35:26 |
言語 | C++17(clang) (17.0.6 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,563 bytes |
コンパイル時間 | 1,646 ms |
コンパイル使用メモリ | 151,472 KB |
実行使用メモリ | 142,052 KB |
最終ジャッジ日時 | 2024-05-07 18:44:40 |
合計ジャッジ時間 | 21,198 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 9 ms
10,624 KB |
testcase_01 | AC | 15 ms
5,980 KB |
testcase_02 | AC | 10 ms
5,376 KB |
testcase_03 | AC | 11 ms
5,504 KB |
testcase_04 | AC | 10 ms
5,376 KB |
testcase_05 | AC | 10 ms
5,504 KB |
testcase_06 | AC | 18 ms
6,896 KB |
testcase_07 | AC | 13 ms
5,888 KB |
testcase_08 | AC | 18 ms
6,772 KB |
testcase_09 | AC | 16 ms
6,848 KB |
testcase_10 | AC | 1,313 ms
69,416 KB |
testcase_11 | AC | 1,475 ms
75,436 KB |
testcase_12 | AC | 1,403 ms
74,312 KB |
testcase_13 | AC | 1,326 ms
71,592 KB |
testcase_14 | AC | 1,500 ms
75,308 KB |
testcase_15 | AC | 1,490 ms
74,884 KB |
testcase_16 | AC | 1,525 ms
76,008 KB |
testcase_17 | AC | 1,549 ms
76,008 KB |
testcase_18 | AC | 1,439 ms
75,724 KB |
testcase_19 | AC | 1,463 ms
75,872 KB |
testcase_20 | AC | 2 ms
6,944 KB |
testcase_21 | AC | 1 ms
6,940 KB |
testcase_22 | AC | 1,460 ms
75,880 KB |
testcase_23 | TLE | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
ソースコード
#include <algorithm> #include <bitset> #include <complex> #include <deque> #include <exception> #include <fstream> #include <functional> #include <iomanip> #include <ios> #include <iosfwd> #include <iostream> #include <istream> #include <iterator> #include <limits> #include <list> #include <locale> #include <map> #include <memory> #include <new> #include <numeric> #include <ostream> #include <queue> #include <set> #include <sstream> #include <stack> #include <stdexcept> #include <streambuf> #include <string> #include <typeinfo> #include <utility> #include <valarray> #include <vector> #pragma GCC diagnostic ignored "-Wsign-compare" #pragma GCC diagnostic ignored "-Wsign-conversion" using ld = long double; using ll = long long; //!============================================!// //! 8888ba.88ba oo !// //! 88 '8b '8b !// //! 88 88 88 .d8888b. dP 88d888b. !// //! 88 88 88 88' '88 88 88' '88 !// //! 88 88 88 88. .88 88 88 88 !// //! dP dP dP '88888P8 dP dP dP !// //!============================================!// int main() { int N, D; std::cin >> N >> D; std::unordered_map<int, int> wa, sa; for (int i = 1; i <= N; i++) { for (int j = 1; j <= N; j++) { wa[i * i + j * j]++, sa[i * i - j * j]++; } } ll ans = 0; for (const auto& p : sa) { const int W = D + p.first; if (wa.find(W) != wa.end()) { ans += p.second * wa[W]; } } std::cout << ans << std::endl; return 0; }