結果

問題 No.98 円を描こう
ユーザー m2543315647m2543315647
提出日時 2015-05-13 13:09:36
言語 Java21
(openjdk 21)
結果
AC  
実行時間 125 ms / 5,000 ms
コード長 225 bytes
コンパイル時間 2,884 ms
コンパイル使用メモリ 74,320 KB
実行使用メモリ 54,236 KB
最終ジャッジ日時 2024-07-06 01:22:07
合計ジャッジ時間 4,604 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
54,036 KB
testcase_01 AC 114 ms
53,836 KB
testcase_02 AC 121 ms
54,040 KB
testcase_03 AC 125 ms
53,968 KB
testcase_04 AC 110 ms
54,020 KB
testcase_05 AC 100 ms
52,692 KB
testcase_06 AC 102 ms
52,748 KB
testcase_07 AC 101 ms
53,004 KB
testcase_08 AC 112 ms
54,012 KB
testcase_09 AC 114 ms
54,236 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class No98 {
	public static void main(String[] args){
		Scanner sc =new Scanner(System.in);
		System.out.println((int)(Math.sqrt(Math.pow(sc.nextInt(),2)+Math.pow(sc.nextInt(), 2))*2)+1);
	}
}
0