結果

問題 No.410 出会い
ユーザー itezpaceitezpace
提出日時 2016-08-15 00:10:43
言語 Java21
(openjdk 21)
結果
AC  
実行時間 55 ms / 2,000 ms
コード長 608 bytes
コンパイル時間 2,037 ms
コンパイル使用メモリ 74,960 KB
実行使用メモリ 36,832 KB
最終ジャッジ日時 2024-06-28 11:06:28
合計ジャッジ時間 4,168 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
36,444 KB
testcase_01 AC 53 ms
36,824 KB
testcase_02 AC 53 ms
36,724 KB
testcase_03 AC 52 ms
36,280 KB
testcase_04 AC 53 ms
36,260 KB
testcase_05 AC 52 ms
36,608 KB
testcase_06 AC 55 ms
36,480 KB
testcase_07 AC 52 ms
36,832 KB
testcase_08 AC 52 ms
36,392 KB
testcase_09 AC 52 ms
36,720 KB
testcase_10 AC 52 ms
36,748 KB
testcase_11 AC 53 ms
36,664 KB
testcase_12 AC 52 ms
36,576 KB
testcase_13 AC 53 ms
36,448 KB
testcase_14 AC 53 ms
36,576 KB
testcase_15 AC 52 ms
36,704 KB
testcase_16 AC 52 ms
36,704 KB
testcase_17 AC 52 ms
36,576 KB
testcase_18 AC 52 ms
36,512 KB
testcase_19 AC 52 ms
36,672 KB
testcase_20 AC 53 ms
36,152 KB
testcase_21 AC 52 ms
36,660 KB
testcase_22 AC 52 ms
36,672 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.lang.*;
import java.io.*;

class Yuki410{
  public static void main(String[] args)
  throws IOException {
    DataInputStream d=new DataInputStream(System.in);
    String s=d.readLine();
    String[] sa=s.split(" ");
    int x1,y1;
    x1=Integer.parseInt(sa[0]);
    y1=Integer.parseInt(sa[1]);
    String s2=d.readLine();
    String[] sa2=s2.split(" ");
    int x2,y2;
    x2=Integer.parseInt(sa2[0]);
    y2=Integer.parseInt(sa2[1]);
    int xa,ya;
    double za;
    xa=x1-x2;
    if(xa<0) xa*=-1;
    ya=y1-y2;
    if(ya<0) ya*=-1;
    za=xa+ya;
    za/=2;
    System.out.println(za);
  }
}
0