結果

問題 No.149 碁石の移動
ユーザー chiho_miyakochiho_miyako
提出日時 2015-04-06 22:34:07
言語 Java21
(openjdk 21)
結果
AC  
実行時間 126 ms / 2,000 ms
コード長 601 bytes
コンパイル時間 2,193 ms
コンパイル使用メモリ 74,848 KB
実行使用メモリ 41,440 KB
最終ジャッジ日時 2024-06-06 11:44:47
合計ジャッジ時間 5,145 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
40,748 KB
testcase_01 AC 124 ms
41,172 KB
testcase_02 AC 121 ms
41,108 KB
testcase_03 AC 120 ms
40,924 KB
testcase_04 AC 120 ms
40,804 KB
testcase_05 AC 122 ms
40,804 KB
testcase_06 AC 120 ms
41,440 KB
testcase_07 AC 120 ms
40,748 KB
testcase_08 AC 121 ms
41,364 KB
testcase_09 AC 121 ms
41,148 KB
testcase_10 AC 123 ms
41,036 KB
testcase_11 AC 124 ms
41,132 KB
testcase_12 AC 107 ms
40,132 KB
testcase_13 AC 119 ms
41,036 KB
testcase_14 AC 117 ms
40,700 KB
testcase_15 AC 105 ms
40,036 KB
testcase_16 AC 118 ms
40,668 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner koko = new Scanner(System.in);
       int aw = koko.nextInt();
       int ab = koko.nextInt();
       int bw = koko.nextInt();
       int bb = koko.nextInt();
       int c = koko.nextInt();
       int d = koko.nextInt();
       int minus, plus;
       if(ab>c){
           minus = 0;
       }else{
           minus = c-ab;
       }
       if((bw+minus)>=d){
           plus = d;
       }else{
           plus = bw + minus;
       }
       System.out.println(aw-minus+plus);
    }
}
0