結果

問題 No.2760 not fair position game
ユーザー chro_96
提出日時 2024-05-17 22:25:35
言語 C
(gcc 13.3.0)
結果
AC  
実行時間 1 ms / 2,000 ms
コード長 188 bytes
コンパイル時間 1,488 ms
コンパイル使用メモリ 27,520 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-12-20 14:26:14
合計ジャッジ時間 2,028 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 13
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>

int main () {
  int n = 0;
  
  int res = 0;
  
  res = scanf("%d", &n);
  
  if (n%2 > 0) {
    printf("Alice\n");
  } else {
    printf("Bob\n");
  }
  
  return 0;
}
0