結果

問題 No.98 円を描こう
ユーザー tsunabittsunabit
提出日時 2018-09-16 15:44:08
言語 Java21
(openjdk 21)
結果
AC  
実行時間 128 ms / 5,000 ms
コード長 372 bytes
コンパイル時間 2,769 ms
コンパイル使用メモリ 75,324 KB
実行使用メモリ 54,516 KB
最終ジャッジ日時 2024-07-18 07:23:39
合計ジャッジ時間 4,548 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
54,136 KB
testcase_01 AC 120 ms
54,104 KB
testcase_02 AC 114 ms
53,356 KB
testcase_03 AC 125 ms
54,020 KB
testcase_04 AC 126 ms
54,516 KB
testcase_05 AC 117 ms
53,836 KB
testcase_06 AC 123 ms
54,368 KB
testcase_07 AC 122 ms
54,104 KB
testcase_08 AC 119 ms
53,660 KB
testcase_09 AC 118 ms
53,468 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.util.stream.Stream;
import java.time.*;
import java.time.format.*;

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