結果

問題 No.149 碁石の移動
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-11-13 06:35:38
言語 Java21
(openjdk 21)
結果
AC  
実行時間 121 ms / 2,000 ms
コード長 706 bytes
コンパイル時間 1,906 ms
コンパイル使用メモリ 73,544 KB
実行使用メモリ 41,280 KB
最終ジャッジ日時 2024-06-06 12:01:41
合計ジャッジ時間 4,468 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
40,956 KB
testcase_01 AC 121 ms
41,280 KB
testcase_02 AC 120 ms
41,040 KB
testcase_03 AC 102 ms
39,760 KB
testcase_04 AC 108 ms
41,000 KB
testcase_05 AC 102 ms
39,796 KB
testcase_06 AC 110 ms
40,844 KB
testcase_07 AC 109 ms
40,224 KB
testcase_08 AC 102 ms
39,976 KB
testcase_09 AC 115 ms
41,000 KB
testcase_10 AC 97 ms
39,632 KB
testcase_11 AC 110 ms
41,008 KB
testcase_12 AC 105 ms
40,040 KB
testcase_13 AC 110 ms
40,932 KB
testcase_14 AC 100 ms
39,804 KB
testcase_15 AC 100 ms
40,220 KB
testcase_16 AC 98 ms
40,096 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();
        int r;
        
        if(C<=Ab){
            if(D>=Bw){
                r=Aw+Bw;
            }else{
                r=Aw+D;
            }
        }else{
            Aw=Aw-(C-Ab);
            Bw=Bw+(C-Ab);
            Bb=Bb+Ab;
            if(D>=Bw){
                r=Aw+Bw;
            }else{
                r=Aw+D;
            }
        }
        System.out.println(r);
    }
}
0