結果

問題 No.1593 Perfect Distance
ユーザー Ryushi-techRyushi-tech
提出日時 2021-07-19 23:10:59
言語 C++17
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 11 ms / 2,000 ms
コード長 1,222 bytes
コンパイル時間 1,928 ms
コンパイル使用メモリ 200,772 KB
実行使用メモリ 4,764 KB
最終ジャッジ日時 2023-09-24 12:41:59
合計ジャッジ時間 2,812 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,660 KB
testcase_01 AC 3 ms
4,764 KB
testcase_02 AC 3 ms
4,700 KB
testcase_03 AC 3 ms
4,656 KB
testcase_04 AC 3 ms
4,552 KB
testcase_05 AC 3 ms
4,564 KB
testcase_06 AC 3 ms
4,656 KB
testcase_07 AC 3 ms
4,652 KB
testcase_08 AC 3 ms
4,760 KB
testcase_09 AC 3 ms
4,660 KB
testcase_10 AC 4 ms
4,724 KB
testcase_11 AC 5 ms
4,684 KB
testcase_12 AC 6 ms
4,656 KB
testcase_13 AC 6 ms
4,700 KB
testcase_14 AC 7 ms
4,652 KB
testcase_15 AC 8 ms
4,652 KB
testcase_16 AC 11 ms
4,564 KB
testcase_17 AC 3 ms
4,592 KB
testcase_18 AC 3 ms
4,588 KB
testcase_19 AC 3 ms
4,644 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
using ll = long long;
using vl = vector<ll>;
#define rep(i,n) for(int i=0;i<(n);i++)
#define rrep(i,n) for(int i=(n)-1;i>=0;i--)
#define rep1(i,n) for(int i=1;i<=(n);i++)
#define rrep1(i,n) for(int i=(n);i>0;i--)
#define fore(i_in,a) for (auto& i_in: a)
#define sz(x) (int)x.size()
#define all(x) x.begin(), x.end()
#define rall(x) x.rbegin(), x.rend()
#define cnts(x,c) count(all(x),c)
#define fio() cin.tie(nullptr);ios::sync_with_stdio(false);
#define DEBUG_CTN(v) cerr<<#v<<":";for(auto itr=v.begin();itr!=v.end();itr++) cerr<<" "<<*itr; cerr<<endl
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;}
template<class T> void print(const T &t) {cout<<t<<"\n";}
template<class T> void PRINT(const T &t) {rep(i,sz(t)) cout<<t[i]<<" \n"[i==sz(t)-1];}
const ll INF = 1LL << 62;
const int iINF = 1 << 30;

ll n;

int main() {
    fio(); cin>>n;
    int ans=0;
    vl p(200020);
    rep1(i,200000) p[i]=(ll)i*i;
    rep1(i,200000){
        ll tmp=n*n-(ll)i*i;
        if(tmp<=0) break;
        if(*lower_bound(all(p),tmp)==tmp) ans++;
    }
    print(ans);
}
0