結果

問題 No.98 円を描こう
ユーザー rf141rf141
提出日時 2015-08-06 01:26:11
言語 Java21
(openjdk 21)
結果
AC  
実行時間 120 ms / 5,000 ms
コード長 260 bytes
コンパイル時間 3,491 ms
コンパイル使用メモリ 74,612 KB
実行使用メモリ 54,136 KB
最終ジャッジ日時 2024-07-18 03:36:29
合計ジャッジ時間 4,563 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 112 ms
53,736 KB
testcase_01 AC 116 ms
53,964 KB
testcase_02 AC 120 ms
53,824 KB
testcase_03 AC 103 ms
53,112 KB
testcase_04 AC 102 ms
54,068 KB
testcase_05 AC 116 ms
54,060 KB
testcase_06 AC 118 ms
53,900 KB
testcase_07 AC 117 ms
54,000 KB
testcase_08 AC 116 ms
54,136 KB
testcase_09 AC 103 ms
52,772 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
public class draw{
	public static void main(String... args){
		Scanner scan = new Scanner(System.in);
		int x = scan.nextInt(),y = scan.nextInt();
		int xx = x*x,yy = y*y;
		double r= Math.sqrt(xx+yy)*2;
		System.out.println((int)r+1);
	}
}
0