結果

問題 No.98 円を描こう
ユーザー たつお
提出日時 2023-09-29 16:46:30
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 5,000 ms
コード長 235 bytes
コンパイル時間 582 ms
コンパイル使用メモリ 67,860 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-22 10:51:27
合計ジャッジ時間 1,161 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 6
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <cmath>
using namespace std;

int main(void){
//input
	int xp,yp; cin >> xp >> yp;
//calc
	double rad;
	rad = sqrt((abs(xp) * abs(xp))+(abs(yp) * abs(yp)));
//output
	cout << (int)(rad * 2.0) + 1 << endl;
}
0