結果

問題 No.149 碁石の移動
ユーザー htensaihtensai
提出日時 2019-11-30 10:05:55
言語 Java21
(openjdk 21)
結果
AC  
実行時間 138 ms / 2,000 ms
コード長 410 bytes
コンパイル時間 2,159 ms
コンパイル使用メモリ 74,616 KB
実行使用メモリ 43,448 KB
最終ジャッジ日時 2024-11-21 01:01:26
合計ジャッジ時間 5,537 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 137 ms
43,108 KB
testcase_01 AC 121 ms
41,876 KB
testcase_02 AC 134 ms
43,084 KB
testcase_03 AC 135 ms
43,268 KB
testcase_04 AC 136 ms
42,900 KB
testcase_05 AC 135 ms
42,920 KB
testcase_06 AC 138 ms
43,056 KB
testcase_07 AC 136 ms
43,088 KB
testcase_08 AC 138 ms
43,448 KB
testcase_09 AC 137 ms
42,940 KB
testcase_10 AC 137 ms
43,136 KB
testcase_11 AC 136 ms
43,168 KB
testcase_12 AC 136 ms
43,216 KB
testcase_13 AC 136 ms
43,212 KB
testcase_14 AC 135 ms
42,852 KB
testcase_15 AC 137 ms
43,252 KB
testcase_16 AC 135 ms
43,192 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args) {
		Scanner sc = new Scanner(System.in);
		int aw = sc.nextInt();
		int ab = sc.nextInt();
		int bw = sc.nextInt();
		int bb = sc.nextInt();
		int c = sc.nextInt();
		int d = sc.nextInt();
		bw += Math.max(c - ab, 0);
		aw -= Math.max(c - ab, 0);
		bb += Math.min(ab, c);
		aw += Math.min(d, bw);
		System.out.println(aw);
	}
}
0