結果
| 問題 | No.1593 Perfect Distance | 
| コンテスト | |
| ユーザー |  | 
| 提出日時 | 2021-07-09 22:32:30 | 
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) | 
| 結果 | 
                                AC
                                 
                             | 
| 実行時間 | 125 ms / 2,000 ms | 
| コード長 | 322 bytes | 
| コンパイル時間 | 2,185 ms | 
| コンパイル使用メモリ | 198,120 KB | 
| 最終ジャッジ日時 | 2025-01-22 22:15:38 | 
| ジャッジサーバーID (参考情報) | judge4 / judge1 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 3 | 
| other | AC * 17 | 
ソースコード
#include <bits/stdc++.h>
using namespace std;
#define rep(i,n) for(int i = 0; i < (int)n; i++)
using ll = long long;
int main(){
  ll n;
  cin >> n;
  n *= n;
  map<ll,ll> mp;
  for(ll x = 1; x*x <= n; x++) mp[x*x]++;
  ll ans = 0;
  for(ll x = 1; x*x <= n; x++) if(mp[n-x*x]) ans++;
  cout << ans << endl;
  return 0;
}
            
            
            
        