結果

問題 No.2103 ±1s Game
ユーザー chro_96chro_96
提出日時 2022-10-21 21:39:31
言語 C
(gcc 13.3.0)
結果
AC  
実行時間 1 ms / 1,000 ms
コード長 703 bytes
コンパイル時間 270 ms
コンパイル使用メモリ 29,440 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-01 06:17:18
合計ジャッジ時間 1,195 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 34
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>

int main () {
  int x = 0;
  int y = 0;
  int k = 0;
  int p = 0;
  
  int res = 0;
  
  int is_ok = 0;
  
  res = scanf("%d", &x);
  res = scanf("%d", &y);
  res = scanf("%d", &k);
  res = scanf("%d", &p);
  
  if (p > 0 && (x+y-k)%2 == 1 && (x > (x+y-k)/2 || k%2 == 0)) {
    is_ok = 1;
  } else if (p < 0 && (x+y-k)%2 == 1 && y > (x+y-k)/2 && (x > (x+y-k)/2 || k%2 == 1)) {
    is_ok = 1;
  } else if (p > 0 && y <= (x+y-k)/2) {
    is_ok = 1;
  } else if (p > 0 && x <= (x+y-k)/2 && k%2 == 0) {
    is_ok = 1;
  } else if (p < 0 && x <= (x+y-k)/2 && k%2 == 1) {
    is_ok = 1;
  }
  
  if (is_ok > 0) {
    printf("Alice\n");
  } else {
    printf("Bob\n");
  }
  
  return 0;
}
0