結果

問題 No.149 碁石の移動
ユーザー GrenacheGrenache
提出日時 2015-09-23 21:46:22
言語 Java21
(openjdk 21)
結果
AC  
実行時間 124 ms / 2,000 ms
コード長 500 bytes
コンパイル時間 3,370 ms
コンパイル使用メモリ 74,360 KB
実行使用メモリ 41,632 KB
最終ジャッジ日時 2024-06-06 11:54:08
合計ジャッジ時間 5,739 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
41,468 KB
testcase_01 AC 118 ms
41,376 KB
testcase_02 AC 109 ms
39,896 KB
testcase_03 AC 108 ms
40,216 KB
testcase_04 AC 123 ms
40,972 KB
testcase_05 AC 121 ms
40,964 KB
testcase_06 AC 111 ms
40,628 KB
testcase_07 AC 116 ms
41,084 KB
testcase_08 AC 116 ms
41,092 KB
testcase_09 AC 104 ms
40,164 KB
testcase_10 AC 118 ms
41,264 KB
testcase_11 AC 118 ms
41,024 KB
testcase_12 AC 118 ms
40,976 KB
testcase_13 AC 114 ms
40,948 KB
testcase_14 AC 112 ms
40,332 KB
testcase_15 AC 120 ms
40,952 KB
testcase_16 AC 124 ms
41,632 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;


public class Main_yukicoder149 {

    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 tmp = Math.max(0, c - ab);
        int ret = Math.min(bw + tmp, d) + aw - tmp;

        System.out.println(ret);
        
        sc.close();
    }
}
0