結果

問題 No.172 UFOを捕まえろ
ユーザー キョウチクキョウチク
提出日時 2022-05-17 19:29:16
言語 Java21
(openjdk 21)
結果
AC  
実行時間 126 ms / 5,000 ms
コード長 396 bytes
コンパイル時間 5,310 ms
コンパイル使用メモリ 74,480 KB
実行使用メモリ 41,648 KB
最終ジャッジ日時 2024-09-15 14:40:25
合計ジャッジ時間 9,493 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
41,124 KB
testcase_01 AC 117 ms
40,988 KB
testcase_02 AC 118 ms
41,088 KB
testcase_03 AC 118 ms
41,128 KB
testcase_04 AC 113 ms
41,200 KB
testcase_05 AC 123 ms
41,256 KB
testcase_06 AC 114 ms
40,872 KB
testcase_07 AC 122 ms
40,876 KB
testcase_08 AC 115 ms
41,152 KB
testcase_09 AC 123 ms
41,648 KB
testcase_10 AC 111 ms
39,888 KB
testcase_11 AC 121 ms
41,096 KB
testcase_12 AC 122 ms
41,376 KB
testcase_13 AC 120 ms
41,432 KB
testcase_14 AC 120 ms
41,392 KB
testcase_15 AC 123 ms
41,388 KB
testcase_16 AC 126 ms
41,304 KB
testcase_17 AC 117 ms
41,184 KB
testcase_18 AC 122 ms
41,372 KB
testcase_19 AC 123 ms
41,364 KB
testcase_20 AC 120 ms
41,004 KB
testcase_21 AC 123 ms
41,260 KB
testcase_22 AC 108 ms
40,180 KB
testcase_23 AC 107 ms
40,172 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
public class Test11 {
  public static void main(String[] args){
    Scanner sc=new Scanner(System.in);
    String[] line;
    line=sc.nextLine().split(" ");
    int x=Integer.parseInt(line[0]);
    int y=Integer.parseInt(line[1]);
    int r=Integer.parseInt(line[2]);
    int d=Math.abs(x)+Math.abs(y)+(int)(r*Math.sqrt(2))+1;
    System.out.println(d);
    sc.close();
  }
}
0