結果

問題 No.410 出会い
ユーザー jin128jin128
提出日時 2016-08-27 17:53:39
言語 Java21
(openjdk 21)
結果
AC  
実行時間 160 ms / 2,000 ms
コード長 393 bytes
コンパイル時間 2,775 ms
コンパイル使用メモリ 74,140 KB
実行使用メモリ 41,992 KB
最終ジャッジ日時 2024-06-28 11:11:38
合計ジャッジ時間 6,637 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 152 ms
41,604 KB
testcase_01 AC 155 ms
41,512 KB
testcase_02 AC 151 ms
41,636 KB
testcase_03 AC 155 ms
41,540 KB
testcase_04 AC 149 ms
41,392 KB
testcase_05 AC 153 ms
41,524 KB
testcase_06 AC 155 ms
41,756 KB
testcase_07 AC 141 ms
40,860 KB
testcase_08 AC 156 ms
41,756 KB
testcase_09 AC 152 ms
41,376 KB
testcase_10 AC 151 ms
41,732 KB
testcase_11 AC 154 ms
41,704 KB
testcase_12 AC 149 ms
41,280 KB
testcase_13 AC 153 ms
41,500 KB
testcase_14 AC 154 ms
41,780 KB
testcase_15 AC 156 ms
41,676 KB
testcase_16 AC 152 ms
41,424 KB
testcase_17 AC 160 ms
41,224 KB
testcase_18 AC 153 ms
41,568 KB
testcase_19 AC 156 ms
41,992 KB
testcase_20 AC 154 ms
41,744 KB
testcase_21 AC 148 ms
41,564 KB
testcase_22 AC 155 ms
41,584 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class S20_encounter{
  public static void main(String[] args){
    double ax, ay, bx, by;
    double time = 0;
    Scanner scn = new Scanner(System.in);

    ax = scn.nextDouble();
    ay = scn.nextDouble();
    bx = scn.nextDouble();
    by = scn.nextDouble();

    time += Math.abs(ax - bx)/2;
    time += Math.abs(ay - by)/2;

    System.out.println(time);
  }
}
0