結果

問題 No.98 円を描こう
ユーザー kohei2019kohei2019
提出日時 2021-05-24 17:55:08
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 2 ms / 5,000 ms
コード長 421 bytes
コンパイル時間 2,799 ms
コンパイル使用メモリ 160,372 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-04-21 03:40:01
合計ジャッジ時間 3,519 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
#define rep(i,n) for(int i=0;i<(n);i++)
#define INF 100000000
using namespace std;


int main(){
    int X,Y;
    cin>>X>>Y;
    vector<int> ls2 = {};
    for (int i=0;i<40001;i++){
        ls2.push_back(pow(i,2));
    }
    int D = (pow(X,2)+pow(Y,2))*4;
    for (int i=0;i<40000;i++){
        if ((ls2[i] <= D) & (D < ls2[i+1])){
            cout<<i+1<<endl;
            exit;
        }
    }
}
0