結果

問題 No.149 碁石の移動
ユーザー kenji_shioyakenji_shioya
提出日時 2016-06-24 01:08:22
言語 Java21
(openjdk 21)
結果
AC  
実行時間 120 ms / 2,000 ms
コード長 513 bytes
コンパイル時間 3,345 ms
コンパイル使用メモリ 79,440 KB
実行使用メモリ 41,488 KB
最終ジャッジ日時 2024-06-06 11:57:34
合計ジャッジ時間 5,614 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
40,524 KB
testcase_01 AC 120 ms
41,256 KB
testcase_02 AC 118 ms
41,336 KB
testcase_03 AC 118 ms
41,200 KB
testcase_04 AC 114 ms
40,828 KB
testcase_05 AC 113 ms
41,000 KB
testcase_06 AC 110 ms
40,536 KB
testcase_07 AC 105 ms
40,120 KB
testcase_08 AC 116 ms
41,488 KB
testcase_09 AC 119 ms
41,412 KB
testcase_10 AC 115 ms
40,716 KB
testcase_11 AC 109 ms
39,984 KB
testcase_12 AC 117 ms
41,064 KB
testcase_13 AC 116 ms
41,332 KB
testcase_14 AC 104 ms
40,264 KB
testcase_15 AC 117 ms
41,268 KB
testcase_16 AC 120 ms
41,392 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((a[1] > f) ? 0 : f - a[1], a[0]);
    a[0] -= Math.min((a[1] > f) ? 0 : f - a[1], a[0]);
    a[0] += Math.min(s, b[0]);
    System.out.println(a[0]);
  }
}
0