結果
問題 | No.800 四平方定理 |
ユーザー | misora192 |
提出日時 | 2020-05-15 09:08:18 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 668 bytes |
コンパイル時間 | 1,508 ms |
コンパイル使用メモリ | 175,148 KB |
実行使用メモリ | 56,064 KB |
最終ジャッジ日時 | 2024-09-17 15:14:00 |
合計ジャッジ時間 | 8,764 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 16 ms
13,756 KB |
testcase_01 | AC | 31 ms
6,940 KB |
testcase_02 | AC | 22 ms
6,944 KB |
testcase_03 | AC | 24 ms
6,940 KB |
testcase_04 | AC | 20 ms
6,940 KB |
testcase_05 | AC | 24 ms
6,940 KB |
testcase_06 | AC | 38 ms
6,944 KB |
testcase_07 | AC | 27 ms
6,940 KB |
testcase_08 | AC | 30 ms
6,944 KB |
testcase_09 | AC | 33 ms
6,940 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
6,944 KB |
testcase_21 | AC | 2 ms
6,940 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> #define rep(i,n) for(int i=(0);i<(n);i++) using namespace std; typedef long long ll; template<class T> bool chmax(T &a, const T &b) { if (a<b) { a=b; return 1; } return 0; } template<class T> bool chmin(T &a, const T &b) { if (a>b) { a=b; return 1; } return 0; } int main(){ cin.tie(0); ios::sync_with_stdio(false); int n, d; cin >> n >> d; map<int, int> mp; rep(z, n) rep(w, n){ int a = (w + 1) * (w + 1) - (z + 1) * (z + 1) + d; if(mp.count(a) == 0) mp[a] = 0; mp[a]++; } int ans = 0; rep(x, n) rep(y, n){ int a = (x + 1) * (x + 1) + (y + 1) * (y + 1); if(mp.count(a) > 0) ans += mp[a]; } cout << ans << endl; }