結果

問題 No.149 碁石の移動
ユーザー kenji_shioyakenji_shioya
提出日時 2016-06-24 01:01:26
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 479 bytes
コンパイル時間 3,432 ms
コンパイル使用メモリ 74,404 KB
実行使用メモリ 41,440 KB
最終ジャッジ日時 2024-10-11 19:23:18
合計ジャッジ時間 6,468 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
40,928 KB
testcase_01 AC 131 ms
41,020 KB
testcase_02 AC 131 ms
41,112 KB
testcase_03 AC 130 ms
40,904 KB
testcase_04 AC 131 ms
41,440 KB
testcase_05 AC 129 ms
41,088 KB
testcase_06 AC 130 ms
40,884 KB
testcase_07 AC 128 ms
41,168 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 119 ms
40,104 KB
testcase_11 AC 130 ms
40,768 KB
testcase_12 AC 133 ms
40,912 KB
testcase_13 AC 135 ms
41,152 KB
testcase_14 AC 129 ms
41,044 KB
testcase_15 AC 119 ms
40,096 KB
testcase_16 AC 130 ms
41,120 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Exercise118{
  public static void main (String[] args){

    Scanner sc = new Scanner(System.in);

    int[] a = new int[2];
    int[] b = new int[2];
    a[0] = sc.nextInt();
    a[1] = sc.nextInt();
    b[0] = sc.nextInt();
    b[1] = sc.nextInt();
    int f = sc.nextInt();
    int s = sc.nextInt();
    b[0] += Math.min(f - a[1], a[0]);
    a[0] -= Math.min(f - a[1], a[0]);
    a[0] += Math.min(s, b[0]);
    System.out.println(a[0]);
  }
}
0