結果

問題 No.149 碁石の移動
ユーザー yun_appyun_app
提出日時 2016-05-12 01:30:07
言語 Java21
(openjdk 21)
結果
AC  
実行時間 47 ms / 2,000 ms
コード長 799 bytes
コンパイル時間 1,695 ms
コンパイル使用メモリ 74,216 KB
実行使用メモリ 37,096 KB
最終ジャッジ日時 2024-06-06 11:57:05
合計ジャッジ時間 3,117 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
36,748 KB
testcase_01 AC 43 ms
36,392 KB
testcase_02 AC 43 ms
36,716 KB
testcase_03 AC 45 ms
36,788 KB
testcase_04 AC 44 ms
36,560 KB
testcase_05 AC 43 ms
36,788 KB
testcase_06 AC 44 ms
36,760 KB
testcase_07 AC 45 ms
36,464 KB
testcase_08 AC 46 ms
37,096 KB
testcase_09 AC 43 ms
36,760 KB
testcase_10 AC 43 ms
36,596 KB
testcase_11 AC 45 ms
36,616 KB
testcase_12 AC 47 ms
36,560 KB
testcase_13 AC 45 ms
36,740 KB
testcase_14 AC 45 ms
36,760 KB
testcase_15 AC 46 ms
36,728 KB
testcase_16 AC 46 ms
36,388 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

class Ideone{
    public static void main(String[] args) throws Exception{
        // your code goes here
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        String[] lines = br.readLine().split(" ");
        int aw = Integer.parseInt(lines[0]);
        int ab = Integer.parseInt(lines[1]);

        lines = br.readLine().split(" ");
        int bw = Integer.parseInt(lines[0]);
        int bb = Integer.parseInt(lines[1]);

        lines = br.readLine().split(" ");
        int c = Integer.parseInt(lines[0]);
        int d = Integer.parseInt(lines[1]);

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