結果

問題 No.149 碁石の移動
ユーザー fal_rndfal_rnd
提出日時 2018-04-25 10:02:34
言語 Java21
(openjdk 21)
結果
AC  
実行時間 126 ms / 2,000 ms
コード長 402 bytes
コンパイル時間 2,049 ms
コンパイル使用メモリ 74,588 KB
実行使用メモリ 41,448 KB
最終ジャッジ日時 2024-06-27 20:59:53
合計ジャッジ時間 5,042 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
40,528 KB
testcase_01 AC 122 ms
41,172 KB
testcase_02 AC 124 ms
40,872 KB
testcase_03 AC 124 ms
41,228 KB
testcase_04 AC 125 ms
41,304 KB
testcase_05 AC 122 ms
41,188 KB
testcase_06 AC 118 ms
40,776 KB
testcase_07 AC 121 ms
41,448 KB
testcase_08 AC 125 ms
40,972 KB
testcase_09 AC 124 ms
41,376 KB
testcase_10 AC 123 ms
41,432 KB
testcase_11 AC 123 ms
40,996 KB
testcase_12 AC 125 ms
41,140 KB
testcase_13 AC 120 ms
41,208 KB
testcase_14 AC 109 ms
39,820 KB
testcase_15 AC 122 ms
41,284 KB
testcase_16 AC 126 ms
41,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.util.stream.*;
class Main {
    static Scanner s=new Scanner(System.in);
    static int gInt(){return Integer.parseInt(s.next());}
    public static void main(String[]$){
        int aw=gInt(),ab=gInt(),bw=gInt(),bb=gInt(),c=gInt(),d=gInt();
        aw-=Math.max(0,c-ab);
        bw+=Math.max(0,c-ab);
        aw+=Math.min(d,bw);
        System.out.println(aw);
    }
}
0