結果

問題 No.149 碁石の移動
ユーザー m2543315647m2543315647
提出日時 2015-05-14 16:05:25
言語 Java21
(openjdk 21)
結果
AC  
実行時間 121 ms / 2,000 ms
コード長 311 bytes
コンパイル時間 3,152 ms
コンパイル使用メモリ 74,216 KB
実行使用メモリ 41,424 KB
最終ジャッジ日時 2024-06-06 11:46:57
合計ジャッジ時間 5,845 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
41,424 KB
testcase_01 AC 116 ms
41,228 KB
testcase_02 AC 119 ms
41,412 KB
testcase_03 AC 112 ms
39,988 KB
testcase_04 AC 104 ms
39,804 KB
testcase_05 AC 115 ms
40,728 KB
testcase_06 AC 116 ms
41,256 KB
testcase_07 AC 118 ms
41,288 KB
testcase_08 AC 117 ms
41,100 KB
testcase_09 AC 105 ms
40,148 KB
testcase_10 AC 117 ms
41,040 KB
testcase_11 AC 121 ms
40,996 KB
testcase_12 AC 120 ms
41,016 KB
testcase_13 AC 121 ms
41,240 KB
testcase_14 AC 118 ms
41,364 KB
testcase_15 AC 120 ms
41,272 KB
testcase_16 AC 116 ms
41,176 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class No149 {
	public static void main (String[] args){
	Scanner sc =new Scanner(System.in);
	int aw=sc.nextInt() ,ab=sc.nextInt();
	int bw=sc.nextInt();
	sc.nextInt();
	int c=sc.nextInt(),d=sc.nextInt();
	bw-=ab<c?ab-c:0;
	System.out.println(aw+(bw<d?bw:d)+(ab<c?ab-c:0));
	}
}
0