結果

問題 No.172 UFOを捕まえろ
ユーザー reon777reon777
提出日時 2017-06-25 07:33:58
言語 Java21
(openjdk 21)
結果
AC  
実行時間 115 ms / 5,000 ms
コード長 564 bytes
コンパイル時間 1,841 ms
コンパイル使用メモリ 74,764 KB
実行使用メモリ 54,204 KB
最終ジャッジ日時 2024-10-04 08:19:34
合計ジャッジ時間 5,638 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 110 ms
53,860 KB
testcase_01 AC 108 ms
54,204 KB
testcase_02 AC 110 ms
53,840 KB
testcase_03 AC 106 ms
53,984 KB
testcase_04 AC 100 ms
52,920 KB
testcase_05 AC 103 ms
52,996 KB
testcase_06 AC 113 ms
53,932 KB
testcase_07 AC 114 ms
53,948 KB
testcase_08 AC 108 ms
53,900 KB
testcase_09 AC 114 ms
53,972 KB
testcase_10 AC 113 ms
53,932 KB
testcase_11 AC 111 ms
53,828 KB
testcase_12 AC 114 ms
54,160 KB
testcase_13 AC 109 ms
52,712 KB
testcase_14 AC 114 ms
53,940 KB
testcase_15 AC 109 ms
54,024 KB
testcase_16 AC 107 ms
52,936 KB
testcase_17 AC 109 ms
53,828 KB
testcase_18 AC 114 ms
53,828 KB
testcase_19 AC 114 ms
54,080 KB
testcase_20 AC 114 ms
53,836 KB
testcase_21 AC 99 ms
52,688 KB
testcase_22 AC 115 ms
53,820 KB
testcase_23 AC 111 ms
54,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.util.Scanner;
import java.io.FileNotFoundException;
import java.io.File;

class CatchTheUFO{
  public static void main(String args[]){
      Scanner scan = new Scanner(System.in);


      int x = Integer.parseInt(scan.next());
      int y = Integer.parseInt(scan.next());
      int r = Integer.parseInt(scan.next());

      x = Math.abs(x);
      y = Math.abs(y);

      double ans_d = Math.sqrt(2) * r;
      ans_d = Math.ceil(ans_d);
      int ans = (int) ans_d;

      ans = ans + x + y;

      System.out.println(ans);

    }
}
0