結果

問題 No.98 円を描こう
ユーザー matsuyoshi30matsuyoshi30
提出日時 2016-03-31 18:24:11
言語 Java21
(openjdk 21)
結果
AC  
実行時間 146 ms / 5,000 ms
コード長 378 bytes
コンパイル時間 3,575 ms
コンパイル使用メモリ 74,364 KB
実行使用メモリ 54,472 KB
最終ジャッジ日時 2024-10-02 08:30:24
合計ジャッジ時間 6,457 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 143 ms
54,324 KB
testcase_01 AC 143 ms
54,184 KB
testcase_02 AC 145 ms
53,940 KB
testcase_03 AC 145 ms
54,472 KB
testcase_04 AC 146 ms
53,944 KB
testcase_05 AC 144 ms
54,228 KB
testcase_06 AC 142 ms
54,316 KB
testcase_07 AC 143 ms
53,868 KB
testcase_08 AC 142 ms
54,148 KB
testcase_09 AC 141 ms
54,212 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class Main {
	public static void main(String[] args) throws Exception {
		Scanner in = new Scanner(System.in);
		double x_p = in.nextDouble();
		double y_p = in.nextDouble();

		int ans = 0;
		x_p = Math.abs(x_p);
		y_p = Math.abs(y_p);
		double r = Math.sqrt(Math.pow(x_p,2) + Math.pow(y_p,2));
		ans = (int)(r*2) + 1;
		System.out.println(ans);
	}
}
0