結果
| 問題 | No.1593 Perfect Distance | 
| コンテスト | |
| ユーザー |  naohS | 
| 提出日時 | 2021-07-09 21:45:56 | 
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) | 
| 結果 | 
                                AC
                                 
                             | 
| 実行時間 | 2 ms / 2,000 ms | 
| コード長 | 1,187 bytes | 
| コンパイル時間 | 686 ms | 
| コンパイル使用メモリ | 88,656 KB | 
| 実行使用メモリ | 6,944 KB | 
| 最終ジャッジ日時 | 2024-07-01 15:47:02 | 
| 合計ジャッジ時間 | 1,422 ms | 
| ジャッジサーバーID (参考情報) | judge5 / judge1 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 3 | 
| other | AC * 17 | 
ソースコード
#include <iostream>
#include <string>
#include <algorithm>
#include <functional>
#include <vector>
#include <stack>
#include <queue>
#include <set>
#include <map>
#include <tuple>
#include <cstdio>
#include <cmath>
#include <bitset>
//#include <atcoder/all>
#define ll long long
#define rep(i, n) for(ll i = 0; i < n; i++)
using namespace std;
//using namespace atcoder;
const ll INF = 2000000000000000000LL;
/*
ll gcd(ll a, ll b){
	//log max(a,b)
	if (a % b == 0){
		return(b);
	}
	else{
		return(gcd(b, a % b));
	}
}
ll lcm(ll a, ll b){
	return a * b / gcd(a, b);
}
*/
//gcd lcm
/*
class UnionFind {
public:
	vector<ll> par;
	void init(ll sz) {
		par.resize(sz, -1);
	}
	ll root(ll pos) {
		if (par[pos] == -1) return pos;
		par[pos] = root(par[pos]);
		return par[pos];
	}
	void unite(ll u, ll v) {
		u = root(u); v = root(v);
		if (u == v) return;
		par[u] = v;
	}
	bool same(ll u, ll v) {
		if (root(u) == root(v)) return true;
		return false;
	}
};
*/
typedef pair<ll, ll> P;
int main(){
	ll n;
	cin >> n;
	ll ans = 0;
	for (ll y = 1; y*y < n*n; y++) {
		ll a = n * n - y * y;
		double sa = sqrt(a);
		ll saint = (ll)sa;
		if (sa-saint==0) ans++;
	}
	cout << ans << endl;
}
            
            
            
        