結果

問題 No.1593 Perfect Distance
ユーザー KKT89KKT89
提出日時 2021-08-03 05:54:18
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 121 ms / 2,000 ms
コード長 724 bytes
コンパイル時間 2,705 ms
コンパイル使用メモリ 219,440 KB
実行使用メモリ 28,288 KB
最終ジャッジ日時 2024-09-16 14:53:21
合計ジャッジ時間 3,938 ms
ジャッジサーバーID
(参考情報)
judge2 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 6 ms
6,944 KB
testcase_10 AC 16 ms
6,940 KB
testcase_11 AC 24 ms
8,832 KB
testcase_12 AC 44 ms
12,800 KB
testcase_13 AC 47 ms
13,568 KB
testcase_14 AC 55 ms
15,360 KB
testcase_15 AC 82 ms
20,608 KB
testcase_16 AC 121 ms
28,288 KB
testcase_17 AC 1 ms
6,940 KB
testcase_18 AC 2 ms
6,940 KB
testcase_19 AC 2 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC optimize("Ofast")
#include <bits/stdc++.h>
using namespace std;
typedef long long int ll;
typedef unsigned long long ull;

mt19937_64 rng(chrono::steady_clock::now().time_since_epoch().count());
ll myRand(ll B) {
    return (ull)rng() % B;
}

constexpr ll mod=1e9+7;

ll mod_pow(ll a,ll b,ll mod){
    a%=mod;
    if(b==0)return 1;
    if(b==1)return a;
    ll res=mod_pow(a,b/2,mod)%mod;
    res*=res; res%=mod;
    if(b%2)res*=a;
    return res%mod;
}

int main(){
    cin.tie(nullptr);
    ios::sync_with_stdio(false);
    ll n; cin >> n;
    map<ll,int> mp;
    int res=0;
    for(ll i=1;i<=n;i++){
        mp[i*i]++;
    }
    for(ll x=1;x<=n;x++){
        res+=mp[n*n-x*x];
    }
    cout << res << endl;
}
0