結果

問題 No.149 碁石の移動
ユーザー カニ戯(ryカニ戯(ry
提出日時 2015-02-24 14:57:16
言語 Java21
(openjdk 21)
結果
AC  
実行時間 125 ms / 2,000 ms
コード長 283 bytes
コンパイル時間 1,819 ms
コンパイル使用メモリ 73,744 KB
実行使用メモリ 41,244 KB
最終ジャッジ日時 2024-06-06 11:41:48
合計ジャッジ時間 4,197 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 96 ms
40,132 KB
testcase_01 AC 100 ms
39,796 KB
testcase_02 AC 94 ms
40,020 KB
testcase_03 AC 125 ms
41,244 KB
testcase_04 AC 106 ms
40,692 KB
testcase_05 AC 107 ms
40,676 KB
testcase_06 AC 108 ms
40,816 KB
testcase_07 AC 106 ms
40,968 KB
testcase_08 AC 110 ms
40,748 KB
testcase_09 AC 98 ms
39,848 KB
testcase_10 AC 105 ms
41,176 KB
testcase_11 AC 105 ms
41,044 KB
testcase_12 AC 101 ms
40,244 KB
testcase_13 AC 96 ms
40,080 KB
testcase_14 AC 96 ms
39,808 KB
testcase_15 AC 104 ms
40,868 KB
testcase_16 AC 108 ms
40,844 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] a) {
		Scanner s = new Scanner(System.in);
		int[] p=new int[6];
		int i=0,b;for(;6>i;)p[i++]=s.nextInt();
		b=(p[4]-p[1]>0)?p[4]-p[1]:0;
		System.out.println(p[0]-b+((p[5]-p[2]-b>0)?p[2]+b:p[5]));
	}
}
0