結果

問題 No.98 円を描こう
ユーザー Kurichan0806Kurichan0806
提出日時 2017-12-12 18:02:07
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 451 bytes
コンパイル時間 744 ms
コンパイル使用メモリ 83,244 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-12-14 06:08:51
合計ジャッジ時間 1,279 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#define _USE_MATH_DEFINES
#include <iostream>
#include <vector>
#include <algorithm>
#include <string>
#include <iomanip>
#include <functional>
#include <cmath>
#include <math.h>
using namespace std;
#define lli long long int
#define us(n) (n) > 0 ? n : (n) * -1

int main() {
	int x, y;
	double kyori;
	cin >> x >> y;
	kyori = sqrt(pow(us(x), 2) + pow(us(y), 2)) - 0.0000000001;
	cout << fixed << setprecision(0) << kyori * 2 + 1<< endl;
	return 0;
}
0