結果

問題 No.1593 Perfect Distance
ユーザー Shawn stayC
提出日時 2022-07-02 13:58:57
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 277 bytes
コンパイル時間 2,115 ms
コンパイル使用メモリ 194,040 KB
最終ジャッジ日時 2025-01-30 03:57:48
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 12 WA * 5
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using G=vector<vector<int>>;
typedef long long ll;
#define rep(i,l,r) for(int i=(l);i<(r);++i)

int main(){
	int n; cin>>n;
	ll m=n*n;
	int cnt=0;
	rep(x,1,n){
		ll y=m-x*x;
		if(sqrt(y)==(int)sqrt(y)) cnt++;
	}
	cout<<cnt<<endl;
}
0