結果
問題 | No.149 碁石の移動 |
ユーザー | ki_ki33 |
提出日時 | 2015-02-12 23:30:25 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 126 ms / 2,000 ms |
コード長 | 1,361 bytes |
コンパイル時間 | 3,521 ms |
コンパイル使用メモリ | 84,652 KB |
実行使用メモリ | 54,040 KB |
最終ジャッジ日時 | 2024-06-06 11:34:12 |
合計ジャッジ時間 | 4,386 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 106 ms
53,876 KB |
testcase_01 | AC | 113 ms
53,944 KB |
testcase_02 | AC | 112 ms
54,016 KB |
testcase_03 | AC | 106 ms
52,788 KB |
testcase_04 | AC | 113 ms
53,900 KB |
testcase_05 | AC | 126 ms
54,032 KB |
testcase_06 | AC | 99 ms
52,616 KB |
testcase_07 | AC | 113 ms
53,840 KB |
testcase_08 | AC | 116 ms
53,936 KB |
testcase_09 | AC | 112 ms
53,964 KB |
testcase_10 | AC | 106 ms
52,564 KB |
testcase_11 | AC | 115 ms
53,884 KB |
testcase_12 | AC | 110 ms
54,040 KB |
testcase_13 | AC | 107 ms
53,604 KB |
testcase_14 | AC | 100 ms
52,612 KB |
testcase_15 | AC | 110 ms
53,872 KB |
testcase_16 | AC | 96 ms
52,564 KB |
ソースコード
import java.io.BufferedInputStream; import java.io.IOException; import java.math.BigDecimal; import java.math.BigInteger; import java.util.*; import java.util.Map.Entry; import java.util.concurrent.ConcurrentSkipListSet; public class Main { public static final int C = 1000000007; static final int CY = 1000000000; //static boolean MAP[][]; static int K; static int N; static double P; static String S; static int M; static int MAX = -1; //static int tic[][]; static int T[][]; static int Y[]; static double W[]; //static int max; static long DP[]; static int ST[][]; //static int p[]; //static ArrayList<HashSet<Integer>> al; static ConcurrentSkipListSet<Integer> TS; static ArrayList<Integer> AL; //static int a[][]; //static char[][] ch; //static ArrayList<HashMap<Long, Long>> al; //static String a[]; //static String str; public static void main(String[] args) { StringBuilder sb = new StringBuilder(); BufferedInputStream bs = new BufferedInputStream(System.in); Scanner sc = new Scanner(bs); int aw = sc.nextInt(); int ab = sc.nextInt(); int bw = sc.nextInt(); int bb = sc.nextInt(); int c = sc.nextInt(); int d = sc.nextInt(); long ans = 0; ans += aw; int ch = Math.max(0, c - ab); ans -= ch; bw += ch; ans += Math.min(d,bw); System.out.println(ans); } }