結果

問題 No.172 UFOを捕まえろ
ユーザー takeya_okinotakeya_okino
提出日時 2017-06-23 16:43:02
言語 Java21
(openjdk 21)
結果
AC  
実行時間 122 ms / 5,000 ms
コード長 602 bytes
コンパイル時間 1,934 ms
コンパイル使用メモリ 74,652 KB
実行使用メモリ 54,316 KB
最終ジャッジ日時 2024-10-03 04:10:54
合計ジャッジ時間 5,156 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 99 ms
52,824 KB
testcase_01 AC 114 ms
54,080 KB
testcase_02 AC 114 ms
53,984 KB
testcase_03 AC 111 ms
53,792 KB
testcase_04 AC 112 ms
54,096 KB
testcase_05 AC 113 ms
54,024 KB
testcase_06 AC 109 ms
52,864 KB
testcase_07 AC 101 ms
52,772 KB
testcase_08 AC 106 ms
53,908 KB
testcase_09 AC 107 ms
52,792 KB
testcase_10 AC 116 ms
54,172 KB
testcase_11 AC 115 ms
53,796 KB
testcase_12 AC 112 ms
53,844 KB
testcase_13 AC 114 ms
53,440 KB
testcase_14 AC 116 ms
53,948 KB
testcase_15 AC 103 ms
52,632 KB
testcase_16 AC 102 ms
52,728 KB
testcase_17 AC 112 ms
52,872 KB
testcase_18 AC 118 ms
53,928 KB
testcase_19 AC 122 ms
53,808 KB
testcase_20 AC 114 ms
52,732 KB
testcase_21 AC 110 ms
54,316 KB
testcase_22 AC 114 ms
53,764 KB
testcase_23 AC 112 ms
54,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
  public static void main(String[] args) {
    Scanner sc = new Scanner(System.in);
    int x = sc.nextInt();
    int y = sc.nextInt();
    int r = sc.nextInt();
    int a = 0;
    for(int i = 1; i <= 200; i++) {
      if(i * i > 2 * r * r) {
        a = i;
        break;
      }
    }
    int s = Math.abs(Math.min(0, x - a - y));
    int t = Math.abs(Math.min(0, x - a + y));
    int u = Math.abs(Math.max(0, x + a + y));
    int v = Math.abs(Math.max(0, x + a - y));
    int ans = Math.max(Math.max(s, t), Math.max(u, v));
    System.out.println(ans);
  }
}
0