結果

問題 No.2521 Don't be Same
ユーザー tnakao0123tnakao0123
提出日時 2024-06-19 22:55:07
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 66 ms / 2,000 ms
コード長 1,238 bytes
コンパイル時間 487 ms
コンパイル使用メモリ 44,032 KB
実行使用メモリ 25,436 KB
平均クエリ数 10.32
最終ジャッジ日時 2024-06-19 22:55:12
合計ジャッジ時間 4,991 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 64 ms
25,436 KB
testcase_01 AC 62 ms
24,568 KB
testcase_02 AC 64 ms
25,196 KB
testcase_03 AC 60 ms
24,568 KB
testcase_04 AC 60 ms
24,568 KB
testcase_05 AC 62 ms
24,568 KB
testcase_06 AC 62 ms
24,836 KB
testcase_07 AC 62 ms
25,220 KB
testcase_08 AC 63 ms
25,220 KB
testcase_09 AC 65 ms
25,100 KB
testcase_10 AC 62 ms
24,824 KB
testcase_11 AC 61 ms
24,824 KB
testcase_12 AC 61 ms
24,952 KB
testcase_13 AC 63 ms
24,824 KB
testcase_14 AC 62 ms
24,568 KB
testcase_15 AC 64 ms
24,824 KB
testcase_16 AC 63 ms
25,220 KB
testcase_17 AC 62 ms
25,136 KB
testcase_18 AC 63 ms
24,964 KB
testcase_19 AC 63 ms
24,580 KB
testcase_20 AC 63 ms
24,440 KB
testcase_21 AC 62 ms
24,824 KB
testcase_22 AC 65 ms
24,824 KB
testcase_23 AC 63 ms
24,824 KB
testcase_24 AC 64 ms
24,568 KB
testcase_25 AC 65 ms
25,208 KB
testcase_26 AC 66 ms
24,824 KB
testcase_27 AC 64 ms
24,824 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/* -*- coding: utf-8 -*-
 *
 * 2521.cc:  No.2521 Don't be Same - yukicoder
 */

#include<cstdio>
#include<algorithm>
 
using namespace std;

/* subroutines */

int read(int &i, int &z) {
  char op[4];
  scanf("%s", op);

  i = z = -1;
  if (op[0] == 'A') scanf("%d%d", &i, &z), i--;
  return op[0] - 'A';
}

/* main */

int main() {
  int x, y;
  scanf("%d%d", &x, &y);

  if (((x & 1) && y == x + 1) || ((y & 1) && x == y + 1)) {
    puts("Second"); fflush(stdout);

    int i, z;
    int r = read(i, z);
    if (r >= 2) return 0;
    if (i == 0) x -= z;
    else y -= z;
  }
  else {
    puts("First"); fflush(stdout);
  }

  while (x > 0 || y > 0) {
    if (x == y) {
      puts("B");
      x = y = 0;
    }
    else if (x == 0) {
      printf("A 2 %d\n", y);
      y = 0;
    }
    else if (y == 0) {
      printf("A 1 %d\n", x);
      x = 0;
    }
    else if (x < y) {
      int z = (x & 1) ? y - (x + 1) : y - (x - 1);
      printf("A 2 %d\n", z);
      y -= z;
    }
    else { // x > y
      int z = (y & 1) ? x - (y + 1) : x - (y - 1);
      printf("A 1 %d\n", z);
      x -= z;
    }
    fflush(stdout);

    int i, z;
    int r = read(i, z);

    if (r >= 2) break;
    if (i == 0) x -= z;
    else y -= z;
  }

  return 0;
}
0