結果

問題 No.149 碁石の移動
ユーザー yuppe19 😺yuppe19 😺
提出日時 2015-04-21 23:26:30
言語 Java21
(openjdk 21)
結果
AC  
実行時間 111 ms / 2,000 ms
コード長 549 bytes
コンパイル時間 2,086 ms
コンパイル使用メモリ 74,084 KB
実行使用メモリ 41,368 KB
最終ジャッジ日時 2024-06-06 11:45:22
合計ジャッジ時間 4,311 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 106 ms
40,784 KB
testcase_01 AC 102 ms
39,736 KB
testcase_02 AC 107 ms
40,856 KB
testcase_03 AC 106 ms
41,012 KB
testcase_04 AC 104 ms
41,132 KB
testcase_05 AC 103 ms
40,896 KB
testcase_06 AC 96 ms
39,960 KB
testcase_07 AC 111 ms
41,368 KB
testcase_08 AC 104 ms
40,688 KB
testcase_09 AC 103 ms
40,876 KB
testcase_10 AC 103 ms
40,864 KB
testcase_11 AC 102 ms
41,004 KB
testcase_12 AC 103 ms
40,720 KB
testcase_13 AC 103 ms
40,880 KB
testcase_14 AC 105 ms
40,712 KB
testcase_15 AC 104 ms
40,856 KB
testcase_16 AC 109 ms
40,656 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import static java.lang.Math.*;

public class Main {
    private void solve() {
        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 lagmark = min(ab, c);
        aw -= c - lagmark;
        bw += c - lagmark;
        System.out.println(aw + min(bw, d));
    }

    public static void main(String[] args) {
        new Main().solve();
    }
}
0