結果

問題 No.149 碁石の移動
ユーザー spaciaspacia
提出日時 2016-01-03 15:25:12
言語 Java21
(openjdk 21)
結果
AC  
実行時間 50 ms / 2,000 ms
コード長 735 bytes
コンパイル時間 1,877 ms
コンパイル使用メモリ 74,440 KB
実行使用メモリ 36,992 KB
最終ジャッジ日時 2024-06-06 11:55:15
合計ジャッジ時間 3,332 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
36,648 KB
testcase_01 AC 46 ms
36,672 KB
testcase_02 AC 47 ms
36,436 KB
testcase_03 AC 47 ms
36,628 KB
testcase_04 AC 49 ms
36,436 KB
testcase_05 AC 48 ms
36,436 KB
testcase_06 AC 46 ms
36,696 KB
testcase_07 AC 46 ms
36,676 KB
testcase_08 AC 45 ms
36,696 KB
testcase_09 AC 46 ms
36,896 KB
testcase_10 AC 48 ms
36,604 KB
testcase_11 AC 50 ms
36,332 KB
testcase_12 AC 49 ms
36,332 KB
testcase_13 AC 48 ms
36,896 KB
testcase_14 AC 48 ms
36,596 KB
testcase_15 AC 48 ms
36,896 KB
testcase_16 AC 47 ms
36,992 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;

class Main {
	
	public static void out (Object o) {
		System.out.println(o);
	}
		
	public static void main (String[] args) throws IOException {
		BufferedReader br = 
			new BufferedReader(new InputStreamReader(System.in));
		
		String[] line1 = br.readLine().split(" ");
		String[] line2 = br.readLine().split(" ");
		String[] line3 = br.readLine().split(" ");
		
		int aw = Integer.parseInt(line1[0]);
		int ab = Integer.parseInt(line1[1]);
		int bw = Integer.parseInt(line2[0]);
		int bb = Integer.parseInt(line2[1]);
		int c  = Integer.parseInt(line3[0]);
		int d  = Integer.parseInt(line3[1]);
		
		if (c > ab) {
			c -= ab;
			aw -= c;
			bw += c;
		}
		
		out(aw + Math.min(d , bw));
	}
}
0