結果

問題 No.1593 Perfect Distance
ユーザー TsukumowanTsukumowan
提出日時 2021-07-10 13:39:14
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 446 bytes
コンパイル時間 2,221 ms
コンパイル使用メモリ 206,312 KB
実行使用メモリ 19,712 KB
最終ジャッジ日時 2024-07-02 02:01:51
合計ジャッジ時間 4,975 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 87 ms
19,584 KB
testcase_01 AC 86 ms
19,584 KB
testcase_02 AC 91 ms
19,584 KB
testcase_03 AC 89 ms
19,584 KB
testcase_04 AC 85 ms
19,584 KB
testcase_05 AC 82 ms
19,584 KB
testcase_06 AC 83 ms
19,584 KB
testcase_07 AC 92 ms
19,584 KB
testcase_08 AC 92 ms
19,584 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 90 ms
19,584 KB
testcase_18 AC 90 ms
19,712 KB
testcase_19 AC 84 ms
19,584 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

int main(){
    int64_t n;
    cin >> n;
    vector<int64_t> v(300000,1);
    set<int64_t> s;
    for(int i = 1;i < 300000;i++){
         v[i] = i * i;
         s.insert(v[i]);
    }
    int64_t root = n * n;
    int ans = 0;
    for(int i = 1;i < 300000;i++){
        if(v[i] >= root) break;
        if(s.find(root - v[i]) != s.end()){
            ans++;
        }
    }
    cout << ans << endl;
}
0