結果

問題 No.172 UFOを捕まえろ
ユーザー kenji_shioyakenji_shioya
提出日時 2016-06-23 23:37:45
言語 Java21
(openjdk 21)
結果
AC  
実行時間 136 ms / 5,000 ms
コード長 460 bytes
コンパイル時間 3,489 ms
コンパイル使用メモリ 74,976 KB
実行使用メモリ 54,060 KB
最終ジャッジ日時 2024-10-15 15:11:12
合計ジャッジ時間 7,665 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
54,028 KB
testcase_01 AC 132 ms
53,748 KB
testcase_02 AC 121 ms
52,596 KB
testcase_03 AC 132 ms
53,600 KB
testcase_04 AC 133 ms
53,780 KB
testcase_05 AC 133 ms
53,740 KB
testcase_06 AC 133 ms
53,840 KB
testcase_07 AC 133 ms
53,908 KB
testcase_08 AC 135 ms
53,920 KB
testcase_09 AC 135 ms
53,628 KB
testcase_10 AC 134 ms
53,984 KB
testcase_11 AC 133 ms
53,820 KB
testcase_12 AC 132 ms
53,692 KB
testcase_13 AC 134 ms
53,892 KB
testcase_14 AC 134 ms
53,868 KB
testcase_15 AC 136 ms
54,060 KB
testcase_16 AC 134 ms
53,752 KB
testcase_17 AC 135 ms
53,872 KB
testcase_18 AC 134 ms
54,020 KB
testcase_19 AC 134 ms
53,736 KB
testcase_20 AC 135 ms
54,008 KB
testcase_21 AC 134 ms
53,744 KB
testcase_22 AC 134 ms
53,592 KB
testcase_23 AC 134 ms
54,024 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Exercise116{
  public static void main (String[] args){

    Scanner sc = new Scanner(System.in);

    int x = Math.abs(sc.nextInt());
    int y = Math.abs(sc.nextInt());
    double r = sc.nextInt();

    double p = Math.sqrt(r * r / 2);
    int pd = 0;
    if(p - Math.floor(p) > 0.5){
      pd = (int)(Math.ceil(p) * 2);
    }else{
      pd = (int)((Math.floor(p) + 0.5) * 2);
    }
    System.out.println(x + y + pd);
  }
}
0