結果

問題 No.172 UFOを捕まえろ
ユーザー shinwisteriashinwisteria
提出日時 2019-03-17 16:01:10
言語 Java21
(openjdk 21)
結果
AC  
実行時間 123 ms / 5,000 ms
コード長 291 bytes
コンパイル時間 2,858 ms
コンパイル使用メモリ 74,716 KB
実行使用メモリ 56,240 KB
最終ジャッジ日時 2024-07-06 22:24:03
合計ジャッジ時間 6,459 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
56,240 KB
testcase_01 AC 107 ms
52,772 KB
testcase_02 AC 116 ms
54,064 KB
testcase_03 AC 122 ms
54,200 KB
testcase_04 AC 115 ms
54,196 KB
testcase_05 AC 117 ms
54,108 KB
testcase_06 AC 116 ms
54,072 KB
testcase_07 AC 103 ms
52,976 KB
testcase_08 AC 118 ms
54,100 KB
testcase_09 AC 117 ms
54,032 KB
testcase_10 AC 115 ms
53,932 KB
testcase_11 AC 119 ms
54,224 KB
testcase_12 AC 121 ms
54,100 KB
testcase_13 AC 107 ms
52,968 KB
testcase_14 AC 112 ms
53,868 KB
testcase_15 AC 117 ms
54,088 KB
testcase_16 AC 106 ms
52,780 KB
testcase_17 AC 123 ms
54,132 KB
testcase_18 AC 116 ms
53,916 KB
testcase_19 AC 118 ms
54,160 KB
testcase_20 AC 118 ms
54,252 KB
testcase_21 AC 103 ms
52,968 KB
testcase_22 AC 103 ms
53,108 KB
testcase_23 AC 121 ms
54,028 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class No172 {

	public static void main(String[] args) {
		Scanner s = new Scanner(System.in);
		int x = Math.abs(s.nextInt()) , y = Math.abs(s.nextInt()) , r = s.nextInt();
		s.close();

		System.out.println((int)Math.ceil(x + y + Math.sqrt(2)*r));

	}

}
0