結果
問題 | No.800 四平方定理 |
ユーザー | null_mn |
提出日時 | 2019-03-20 20:30:59 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 579 bytes |
コンパイル時間 | 1,457 ms |
コンパイル使用メモリ | 173,124 KB |
実行使用メモリ | 111,564 KB |
最終ジャッジ日時 | 2024-09-19 00:49:23 |
合計ジャッジ時間 | 5,491 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 12 ms
10,960 KB |
testcase_01 | AC | 25 ms
7,248 KB |
testcase_02 | AC | 17 ms
6,088 KB |
testcase_03 | AC | 19 ms
6,608 KB |
testcase_04 | AC | 16 ms
6,088 KB |
testcase_05 | AC | 19 ms
6,348 KB |
testcase_06 | AC | 29 ms
8,268 KB |
testcase_07 | AC | 21 ms
6,864 KB |
testcase_08 | AC | 21 ms
8,268 KB |
testcase_09 | AC | 27 ms
7,500 KB |
testcase_10 | TLE | - |
testcase_11 | TLE | - |
testcase_12 | TLE | - |
testcase_13 | TLE | - |
testcase_14 | TLE | - |
testcase_15 | TLE | - |
testcase_16 | TLE | - |
testcase_17 | TLE | - |
testcase_18 | TLE | - |
testcase_19 | TLE | - |
testcase_20 | AC | 2 ms
5,376 KB |
testcase_21 | AC | 1 ms
5,376 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 <bits/stdc++.h> using namespace std; using ll = long long int; int main() { ll n, d; cin >> n >> d; vector<ll> A; multiset<ll> B; //A(:=xx+yy),B(:=ww-zz+D)の取り得る値を列挙 for (ll x = 1; x <= n; ++x) { for (ll y = 1; y <= n; ++y) { A.push_back(x * x + y * y); } } for (ll x = 1; x <= n; ++x) { for (ll y = 1; y <= n; ++y) { B.insert(x * x - y * y + d); } } int cnt = 0; for (auto a : A) { cnt += B.count(a); } cout << cnt << endl; return 0; }