結果

問題 No.98 円を描こう
ユーザー ffmm00ffmm00
提出日時 2015-06-20 01:44:00
言語 Java21
(openjdk 21)
結果
AC  
実行時間 117 ms / 5,000 ms
コード長 273 bytes
コンパイル時間 3,339 ms
コンパイル使用メモリ 74,532 KB
実行使用メモリ 41,500 KB
最終ジャッジ日時 2024-07-07 04:34:28
合計ジャッジ時間 4,524 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
41,452 KB
testcase_01 AC 114 ms
41,232 KB
testcase_02 AC 111 ms
41,072 KB
testcase_03 AC 105 ms
41,008 KB
testcase_04 AC 115 ms
41,292 KB
testcase_05 AC 115 ms
41,276 KB
testcase_06 AC 108 ms
40,944 KB
testcase_07 AC 102 ms
41,072 KB
testcase_08 AC 102 ms
41,500 KB
testcase_09 AC 111 ms
41,044 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class N98 {

	public static void main(String[] args) {

		Scanner sca = new Scanner(System.in);

		double x = sca.nextInt();
		double y = sca.nextInt();

		double A = Math.sqrt(x * x + y * y) * 2;

		System.out.println((int) A + 1);

	}

}
0