結果

問題 No.2521 Don't be Same
ユーザー ks2mks2m
提出日時 2023-10-27 23:49:03
言語 Java21
(openjdk 21)
結果
AC  
実行時間 237 ms / 2,000 ms
コード長 1,651 bytes
コンパイル時間 2,475 ms
コンパイル使用メモリ 79,148 KB
実行使用メモリ 58,480 KB
平均クエリ数 9.75
最終ジャッジ日時 2024-09-25 15:34:53
合計ジャッジ時間 10,369 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 214 ms
57,564 KB
testcase_01 AC 201 ms
57,152 KB
testcase_02 AC 229 ms
58,480 KB
testcase_03 AC 201 ms
57,052 KB
testcase_04 AC 200 ms
57,428 KB
testcase_05 AC 213 ms
57,368 KB
testcase_06 AC 203 ms
57,548 KB
testcase_07 AC 220 ms
57,352 KB
testcase_08 AC 216 ms
56,976 KB
testcase_09 AC 237 ms
57,792 KB
testcase_10 AC 183 ms
57,036 KB
testcase_11 AC 195 ms
57,472 KB
testcase_12 AC 198 ms
57,760 KB
testcase_13 AC 188 ms
56,724 KB
testcase_14 AC 198 ms
57,732 KB
testcase_15 AC 200 ms
56,980 KB
testcase_16 AC 200 ms
57,828 KB
testcase_17 AC 190 ms
56,952 KB
testcase_18 AC 199 ms
57,508 KB
testcase_19 AC 190 ms
57,052 KB
testcase_20 AC 237 ms
58,020 KB
testcase_21 AC 208 ms
57,104 KB
testcase_22 AC 213 ms
57,208 KB
testcase_23 AC 220 ms
57,540 KB
testcase_24 AC 234 ms
58,088 KB
testcase_25 AC 222 ms
57,576 KB
testcase_26 AC 228 ms
58,188 KB
testcase_27 AC 228 ms
58,076 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) throws Exception {
		Scanner sc = new Scanner(System.in);
		int x = sc.nextInt();
		int y = sc.nextInt();

		int a = Math.min(x, y);
		int b = Math.max(x, y);
		boolean f = true;
		if (a + 1 == b && a % 2 == 1) {
			f = false;
		}
		if (f) {
			System.out.println("First");
			if (x == y) {
				System.out.println("B");
				x = 0;
				y = 0;
			} else if (x > y) {
				int r = 0;
				if (y == 0) {
					r = x;
				} else if (y % 2 == 0) {
					r = x - y + 1;
				} else {
					r = x - y - 1;
				}
				System.out.println("A 1 " + r);
				x -= r;
			} else {
				int r = 0;
				if (x == 0) {
					r = y;
				} else if (x % 2 == 0) {
					r = y - x + 1;
				} else {
					r = y - x - 1;
				}
				System.out.println("A 2 " + r);
				y -= r;
			}
		} else {
			System.out.println("Second");
		}

		while (true) {
			String s = sc.next();
			if (s.equals("C") || s.equals("D")) {
				break;
			}
			if (s.equals("B")) {
				x = 0;
				y = 0;
			} else {
				int i = sc.nextInt();
				int n = sc.nextInt();
				if (i == 1) {
					x -= n;
				} else {
					y -= n;
				}
			}

			if (x == y) {
				System.out.println("B");
				x = 0;
				y = 0;
			} else if (x > y) {
				int r = 0;
				if (y == 0) {
					r = x;
				} else if (y % 2 == 0) {
					r = x - y + 1;
				} else {
					r = x - y - 1;
				}
				System.out.println("A 1 " + r);
				x -= r;
			} else {
				int r = 0;
				if (x == 0) {
					r = y;
				} else if (x % 2 == 0) {
					r = y - x + 1;
				} else {
					r = y - x - 1;
				}
				System.out.println("A 2 " + r);
				y -= r;
			}
		}
		sc.close();
	}
}
0