結果
問題 | No.800 四平方定理 |
ユーザー | polyomino_24 |
提出日時 | 2019-03-18 15:23:29 |
言語 | C++11 (gcc 11.4.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,386 bytes |
コンパイル時間 | 729 ms |
コンパイル使用メモリ | 103,476 KB |
実行使用メモリ | 133,920 KB |
最終ジャッジ日時 | 2024-07-18 10:00:34 |
合計ジャッジ時間 | 27,615 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 13 ms
13,760 KB |
testcase_01 | AC | 25 ms
6,940 KB |
testcase_02 | AC | 17 ms
6,940 KB |
testcase_03 | AC | 18 ms
6,944 KB |
testcase_04 | AC | 17 ms
6,944 KB |
testcase_05 | AC | 20 ms
6,940 KB |
testcase_06 | AC | 29 ms
6,940 KB |
testcase_07 | AC | 22 ms
6,940 KB |
testcase_08 | AC | 20 ms
6,940 KB |
testcase_09 | AC | 27 ms
6,944 KB |
testcase_10 | TLE | - |
testcase_11 | AC | 1,957 ms
73,472 KB |
testcase_12 | TLE | - |
testcase_13 | AC | 1,616 ms
68,480 KB |
testcase_14 | AC | 1,766 ms
73,344 KB |
testcase_15 | TLE | - |
testcase_16 | AC | 1,907 ms
73,984 KB |
testcase_17 | AC | 1,944 ms
74,112 KB |
testcase_18 | TLE | - |
testcase_19 | TLE | - |
testcase_20 | AC | 1 ms
6,940 KB |
testcase_21 | AC | 1 ms
6,944 KB |
testcase_22 | TLE | - |
testcase_23 | TLE | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
ソースコード
#include <algorithm> #include <cassert> #include <cctype> #include <climits> #include <cmath> #include <complex> #include <cstdio> #include <cstring> #include <deque> #include <functional> #include <iomanip> #include <iostream> #include <map> #include <numeric> #include <queue> #include <random> #include <set> #include <stack> #include <string> #include <tuple> #include <vector> #define rep(i, n) for (int i = 0; i < (int)(n); ++i) //#define cerr if(false) cerr #define show(...) cerr << #__VA_ARGS__ << " = ",debug(__VA_ARGS__); using namespace std; using ll = long long; using pii = pair<int,int>; template<typename T, typename S> ostream &operator<<(ostream &os, pair<T, S> a){ os << '(' << a.first << ',' << a.second << ')'; return os; } template<typename T> ostream &operator<<(ostream &os, vector<T> v){ for(auto x:v)os << x << ' '; return os; } void debug(){cerr << '\n';} template<typename H, typename... T> void debug(H a, T... b){ cerr << a; if(sizeof...(b))cerr << ", "; debug(b...); } int main(){ ll n,d; cin >> n >> d; map<ll,ll>mp; for(ll i = 1; i <= n; i++){ for(int j = 1; j <= n; j++){ mp[i*i-j*j]++; } } ll ans = 0; for(int i = 1; i <= n; i++){ for(int j = 1; j <= n; j++){ if(mp.count(i*i+j*j-d))ans += mp[i*i+j*j-d]; } } cout << ans << endl; }