結果

問題 No.410 出会い
ユーザー TwinkleStar74TwinkleStar74
提出日時 2017-10-16 15:56:54
言語 Java21
(openjdk 21)
結果
AC  
実行時間 123 ms / 2,000 ms
コード長 949 bytes
コンパイル時間 2,059 ms
コンパイル使用メモリ 77,856 KB
実行使用メモリ 41,788 KB
最終ジャッジ日時 2024-06-28 11:26:23
合計ジャッジ時間 5,764 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
41,084 KB
testcase_01 AC 112 ms
41,276 KB
testcase_02 AC 111 ms
41,668 KB
testcase_03 AC 105 ms
40,136 KB
testcase_04 AC 107 ms
39,972 KB
testcase_05 AC 121 ms
41,788 KB
testcase_06 AC 118 ms
40,992 KB
testcase_07 AC 121 ms
41,352 KB
testcase_08 AC 119 ms
40,984 KB
testcase_09 AC 120 ms
41,556 KB
testcase_10 AC 112 ms
40,948 KB
testcase_11 AC 105 ms
40,324 KB
testcase_12 AC 113 ms
41,772 KB
testcase_13 AC 122 ms
41,664 KB
testcase_14 AC 121 ms
41,284 KB
testcase_15 AC 112 ms
41,592 KB
testcase_16 AC 122 ms
41,216 KB
testcase_17 AC 105 ms
40,080 KB
testcase_18 AC 121 ms
41,360 KB
testcase_19 AC 123 ms
41,404 KB
testcase_20 AC 120 ms
41,524 KB
testcase_21 AC 111 ms
40,972 KB
testcase_22 AC 120 ms
41,384 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.text.*;

class No410{
    public static void main(String[] args) {
        try{
            BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
            String[] str1 = br.readLine().split(" ");
            String[] str2 = br.readLine().split(" ");
            int[] A = new int[2];
            int[] B = new int[2];
            for(int i=0; i < 2; i++){
                A[i] = Integer.parseInt(str1[i]);
                B[i] = Integer.parseInt(str2[i]);
            }
            Calc(A,B); 
        }catch(IOException e){
            e.getStackTrace();
        }catch(NumberFormatException e){
            e.getStackTrace();
        }
    }
    
    public static void Calc(int[] a, int[] b){
        double ans = 0;
        ans = (double)(Math.abs(a[0]-b[0]) + Math.abs(a[1]-b[1])) / 2;
        DecimalFormat DF = new DecimalFormat("0.#");
        System.out.println(DF.format(ans));
    }
}
0