結果

問題 No.410 出会い
ユーザー yuma_shobon1108yuma_shobon1108
提出日時 2016-12-04 10:11:45
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 348 bytes
コンパイル時間 2,299 ms
コンパイル使用メモリ 74,520 KB
実行使用メモリ 41,700 KB
最終ジャッジ日時 2024-05-05 19:16:05
合計ジャッジ時間 6,367 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 144 ms
41,460 KB
testcase_12 AC 142 ms
41,280 KB
testcase_13 AC 146 ms
41,492 KB
testcase_14 AC 146 ms
41,396 KB
testcase_15 AC 147 ms
41,584 KB
testcase_16 AC 132 ms
40,932 KB
testcase_17 AC 146 ms
41,644 KB
testcase_18 AC 148 ms
41,696 KB
testcase_19 AC 149 ms
41,284 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 141 ms
41,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.math.*;

class Question410
{
	public static void main(String[] str){
		
		Scanner scan = new Scanner(System.in);
		
		double px = scan.nextDouble(), py = scan.nextDouble();
		double qx = scan.nextDouble(), qy = scan.nextDouble();
		
		System.out.println((Math.abs(px)+Math.abs(py)+Math.abs(qx)+Math.abs(qy))/2);
	}
}
0