結果

問題 No.149 碁石の移動
ユーザー Mcpu3Mcpu3
提出日時 2018-09-19 15:20:33
言語 Java21
(openjdk 21)
結果
AC  
実行時間 117 ms / 2,000 ms
コード長 421 bytes
コンパイル時間 1,697 ms
コンパイル使用メモリ 75,940 KB
実行使用メモリ 41,840 KB
最終ジャッジ日時 2024-07-18 08:15:39
合計ジャッジ時間 4,245 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
41,184 KB
testcase_01 AC 99 ms
41,424 KB
testcase_02 AC 109 ms
41,256 KB
testcase_03 AC 107 ms
41,392 KB
testcase_04 AC 111 ms
41,840 KB
testcase_05 AC 111 ms
41,804 KB
testcase_06 AC 106 ms
41,320 KB
testcase_07 AC 108 ms
41,388 KB
testcase_08 AC 107 ms
41,396 KB
testcase_09 AC 114 ms
41,260 KB
testcase_10 AC 109 ms
41,448 KB
testcase_11 AC 117 ms
41,404 KB
testcase_12 AC 115 ms
41,124 KB
testcase_13 AC 101 ms
39,968 KB
testcase_14 AC 116 ms
41,040 KB
testcase_15 AC 102 ms
40,848 KB
testcase_16 AC 115 ms
40,200 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class Main{
    public static void main(String[] args){
        Scanner sc=new Scanner(System.in);
        int aw=sc.nextInt(),ab=sc.nextInt(),bw=sc.nextInt(),bb=sc.nextInt(),c=sc.nextInt(),d=sc.nextInt();
        sc.close();
        if(ab<c){
            aw-=c-ab;
            bw+=c-ab;
        }
        if(bw>d)aw+=d;
        else aw+=bw;
        System.out.print(aw);
    }
}
0