結果
問題 | No.149 碁石の移動 |
ユーザー | takeya_okino |
提出日時 | 2017-06-22 16:12:45 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 397 bytes |
コンパイル時間 | 2,212 ms |
コンパイル使用メモリ | 74,536 KB |
実行使用メモリ | 55,976 KB |
最終ジャッジ日時 | 2024-10-02 12:18:43 |
合計ジャッジ時間 | 5,263 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 133 ms
54,116 KB |
testcase_01 | AC | 133 ms
54,008 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | AC | 134 ms
53,980 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 130 ms
53,888 KB |
testcase_08 | AC | 134 ms
54,132 KB |
testcase_09 | AC | 137 ms
53,964 KB |
testcase_10 | AC | 134 ms
55,976 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | AC | 133 ms
53,944 KB |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
ソースコード
import java.util.*; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int aw = sc.nextInt(); int ab = sc.nextInt(); int bw = sc.nextInt(); int bb = sc.nextInt(); int c = sc.nextInt(); int d = sc.nextInt(); int ans = aw; ans -= Math.max(0, c - ab); ans += Math.min(bw, d); System.out.println(ans); } }