結果

問題 No.149 碁石の移動
ユーザー shinwisteriashinwisteria
提出日時 2019-01-24 21:02:07
言語 Java21
(openjdk 21)
結果
AC  
実行時間 133 ms / 2,000 ms
コード長 459 bytes
コンパイル時間 4,050 ms
コンパイル使用メモリ 74,408 KB
実行使用メモリ 41,324 KB
最終ジャッジ日時 2024-09-16 04:42:54
合計ジャッジ時間 6,568 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
40,852 KB
testcase_01 AC 130 ms
41,104 KB
testcase_02 AC 130 ms
41,048 KB
testcase_03 AC 131 ms
41,064 KB
testcase_04 AC 130 ms
41,164 KB
testcase_05 AC 129 ms
40,964 KB
testcase_06 AC 131 ms
41,020 KB
testcase_07 AC 133 ms
41,084 KB
testcase_08 AC 130 ms
41,284 KB
testcase_09 AC 131 ms
41,036 KB
testcase_10 AC 131 ms
40,944 KB
testcase_11 AC 129 ms
40,900 KB
testcase_12 AC 133 ms
40,816 KB
testcase_13 AC 131 ms
41,112 KB
testcase_14 AC 129 ms
41,080 KB
testcase_15 AC 131 ms
41,324 KB
testcase_16 AC 131 ms
41,084 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class No149 {

	public static void main(String[] args) {
		Scanner s = new Scanner(System.in);
		int aw = s.nextInt() , ab = s.nextInt() , bw = s.nextInt() , bb = s.nextInt() , c = s.nextInt() , d = s.nextInt();
		s.close();

		if(Math.min(ab, c) == ab){
			aw -= c - ab;
			bw += c - ab;
			bb = ab;
		}else{
			bb = c;
		}
		if(Math.min(bw, d) == bw){
			aw += bw;
		}else{
			aw += d;
		}
		System.out.println(aw);


	}

}
0