結果

問題 No.2521 Don't be Same
ユーザー ks2mks2m
提出日時 2023-10-27 23:42:23
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 1,433 bytes
コンパイル時間 2,539 ms
コンパイル使用メモリ 79,004 KB
実行使用メモリ 67,184 KB
平均クエリ数 9.71
最終ジャッジ日時 2024-09-25 15:32:18
合計ジャッジ時間 11,080 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 RE -
testcase_02 AC 221 ms
57,292 KB
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 AC 228 ms
64,840 KB
testcase_10 AC 201 ms
62,748 KB
testcase_11 AC 197 ms
63,424 KB
testcase_12 AC 207 ms
62,896 KB
testcase_13 AC 211 ms
62,656 KB
testcase_14 AC 200 ms
64,736 KB
testcase_15 AC 182 ms
63,500 KB
testcase_16 AC 193 ms
62,816 KB
testcase_17 AC 184 ms
62,084 KB
testcase_18 AC 196 ms
62,896 KB
testcase_19 AC 182 ms
62,196 KB
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
testcase_23 RE -
testcase_24 RE -
testcase_25 RE -
testcase_26 AC 231 ms
62,624 KB
testcase_27 AC 228 ms
57,792 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 % 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 % 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;
			}
			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 % 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 % 2 == 0) {
					r = y - x + 1;
				} else {
					r = y - x - 1;
				}
				System.out.println("A 2 " + r);
				y -= r;
			}
		}
		sc.close();
	}
}
0