結果

問題 No.98 円を描こう
ユーザー scachescache
提出日時 2014-12-09 23:39:41
言語 Java21
(openjdk 21)
結果
AC  
実行時間 119 ms / 5,000 ms
コード長 441 bytes
コンパイル時間 2,944 ms
コンパイル使用メモリ 74,616 KB
実行使用メモリ 54,444 KB
最終ジャッジ日時 2024-06-11 19:03:37
合計ジャッジ時間 4,664 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
53,948 KB
testcase_01 AC 117 ms
54,076 KB
testcase_02 AC 115 ms
54,444 KB
testcase_03 AC 119 ms
54,132 KB
testcase_04 AC 114 ms
54,100 KB
testcase_05 AC 111 ms
53,776 KB
testcase_06 AC 117 ms
54,208 KB
testcase_07 AC 117 ms
54,256 KB
testcase_08 AC 116 ms
53,876 KB
testcase_09 AC 96 ms
52,616 KB
権限があれば一括ダウンロードができます

ソースコード

diff #


import java.util.Scanner;

public class Main98 {
	public static void main(String[] args) {
		Main98 p = new Main98();
	}

	public Main98() {
		Scanner sc = new Scanner(System.in);
		int x = sc.nextInt();
		int y = sc.nextInt();
		solve(x, y);
	}

	public void solve(int x, int y) {
		x*=2; y*=2;
		double r = Math.ceil(Math.sqrt(x*x+y*y));
		if(x*x+y*y == (int)(r*r))
			r++;

		System.out.println((int)r);
	}

}
0