結果

問題 No.410 出会い
ユーザー yuma_shobon1108yuma_shobon1108
提出日時 2016-12-04 10:11:45
言語 Java
(openjdk 23)
結果
WA  
実行時間 -
コード長 348 bytes
コンパイル時間 1,946 ms
コンパイル使用メモリ 75,760 KB
実行使用メモリ 56,096 KB
最終ジャッジ日時 2024-11-27 19:39:32
合計ジャッジ時間 6,002 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 136 ms
41,544 KB
testcase_12 AC 135 ms
41,896 KB
testcase_13 AC 139 ms
41,712 KB
testcase_14 AC 133 ms
41,712 KB
testcase_15 AC 131 ms
40,620 KB
testcase_16 AC 122 ms
41,272 KB
testcase_17 AC 135 ms
41,388 KB
testcase_18 AC 136 ms
40,820 KB
testcase_19 AC 138 ms
41,064 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 142 ms
41,748 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