結果
問題 | No.800 四平方定理 |
ユーザー | 🍮かんプリン |
提出日時 | 2019-06-17 19:11:56 |
言語 | C++11 (gcc 11.4.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,683 bytes |
コンパイル時間 | 597 ms |
コンパイル使用メモリ | 79,144 KB |
実行使用メモリ | 62,336 KB |
最終ジャッジ日時 | 2024-05-06 01:31:13 |
合計ジャッジ時間 | 20,147 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 9 ms
10,624 KB |
testcase_01 | AC | 17 ms
5,376 KB |
testcase_02 | AC | 12 ms
5,376 KB |
testcase_03 | AC | 13 ms
5,376 KB |
testcase_04 | AC | 13 ms
5,376 KB |
testcase_05 | AC | 13 ms
5,376 KB |
testcase_06 | AC | 21 ms
5,376 KB |
testcase_07 | AC | 17 ms
5,376 KB |
testcase_08 | AC | 15 ms
5,376 KB |
testcase_09 | AC | 19 ms
5,376 KB |
testcase_10 | AC | 1,245 ms
30,592 KB |
testcase_11 | AC | 1,420 ms
34,048 KB |
testcase_12 | AC | 1,546 ms
33,408 KB |
testcase_13 | AC | 1,177 ms
32,000 KB |
testcase_14 | AC | 1,257 ms
34,048 KB |
testcase_15 | AC | 1,438 ms
33,536 KB |
testcase_16 | AC | 1,265 ms
34,432 KB |
testcase_17 | AC | 1,369 ms
34,176 KB |
testcase_18 | AC | 1,615 ms
34,176 KB |
testcase_19 | AC | 1,546 ms
34,304 KB |
testcase_20 | AC | 1 ms
5,376 KB |
testcase_21 | AC | 1 ms
5,376 KB |
testcase_22 | AC | 1,656 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 | -- | - |
コンパイルメッセージ
main.cpp: In function ‘void input(int&, R& ...) [with R = {int}]’: main.cpp:27:60: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 27 | template<typename... R> void input(int& f, R&... r) { scanf("%d", &f); input(r...); } | ~~~~~^~~~~~~~~~ main.cpp: In function ‘void input(int&, R& ...) [with R = {}]’: main.cpp:27:60: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
ソースコード
#pragma region include #include <iostream> #include <vector> #include <algorithm> #include <map> #include <string> #include <queue> #include <stack> #include <cmath> #include <set> #include <cstdio> #include <tuple> #define ALL(obj) (obj).begin(),(obj).end() #define RALL(obj) (obj).rbegin(),(obj).rend() #define REP(i, n) for(int i = 0; i < (int)(n); i++) #define REPR(i, n) for(int i = (int)(n); i >= 0; i--) #define FOR(i,n,m) for(int i = (int)(n); i < int(m); i++) #define MOD 1000000007 #define INF 1000000000 #define LLINF 4000000000000000000 using namespace std; typedef long long ll; typedef pair<int, int> PII; typedef vector<int> VI; typedef vector<VI> VVI; void input() {} template<typename... R> void input(int& f, R&... r) { scanf("%d", &f); input(r...); } template<typename... R> void input(double& f, R&... r) { scanf("%lf", &f); input(r...); } template<typename... R> void input(ll& f, R&... r) { scanf("%lld", &f); input(r...); } template<typename... R> void input(char& f, R&... r) { scanf("%c", &f); input(r...); } template<typename... R> void input(string& f, R&... r) { cin >> f; input(r...); } template<typename T, typename... R> void input(vector<T>& f, R&... r) { REP(i, f.size())input(f[i]); input(r...); } #pragma endregion int main() { int N, D; input(N, D); map<int, int> mp; int ans = 0; REP(x, N) { REP(y, N) { int a = (x + 1) * (x + 1) + (y + 1) * (y + 1); mp[a]++; } } REP(z, N) { REP(w, N) { int b = D + (w + 1) * (w + 1) - (z + 1) * (z + 1); if (mp.find(b) != mp.end()) ans += mp[b]; } } cout << ans << endl; getchar(); getchar(); }