結果

問題 No.149 碁石の移動
ユーザー nCk_cvnCk_cv
提出日時 2016-01-20 17:27:00
言語 Java21
(openjdk 21)
結果
AC  
実行時間 123 ms / 2,000 ms
コード長 530 bytes
コンパイル時間 1,831 ms
コンパイル使用メモリ 74,092 KB
実行使用メモリ 41,488 KB
最終ジャッジ日時 2024-06-06 11:55:30
合計ジャッジ時間 4,477 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
41,144 KB
testcase_01 AC 118 ms
41,424 KB
testcase_02 AC 123 ms
41,264 KB
testcase_03 AC 118 ms
41,132 KB
testcase_04 AC 102 ms
40,308 KB
testcase_05 AC 105 ms
40,272 KB
testcase_06 AC 117 ms
41,488 KB
testcase_07 AC 105 ms
39,928 KB
testcase_08 AC 117 ms
41,064 KB
testcase_09 AC 115 ms
40,724 KB
testcase_10 AC 117 ms
41,164 KB
testcase_11 AC 102 ms
39,952 KB
testcase_12 AC 100 ms
39,452 KB
testcase_13 AC 117 ms
40,996 KB
testcase_14 AC 120 ms
41,084 KB
testcase_15 AC 114 ms
40,996 KB
testcase_16 AC 117 ms
41,152 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.math.*;
import java.io.*;
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();
		if(ab >= c) {
			bb += c;
			ab -= c;
		}
		else {
			bb += ab;
			bw += (c - ab);
			aw -= (c - ab);
			ab = 0;
			
		}
		if(bw >= d) {
			aw += d;
			bw -= d;
		}
		else {
			aw += bw;
		}
		System.out.println(aw);
	}
 }
0