結果
問題 | No.2814 Block Game |
ユーザー |
![]() |
提出日時 | 2024-07-22 18:06:18 |
言語 | C++17(gcc12) (gcc 12.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 432 bytes |
コンパイル時間 | 432 ms |
コンパイル使用メモリ | 42,624 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-22 18:06:24 |
合計ジャッジ時間 | 5,048 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 |
other | WA * 20 |
ソースコード
/* -*- coding: utf-8 -*-** 2814.cc: No.2814 Block Game - yukicoder*/#include<cstdio>#include<algorithm>using namespace std;/* constant *//* typedef */using ll = long long;/* global variables *//* subroutines *//* main */int main() {int tn;scanf("%d", &tn);while (tn--) {ll n;char s[8];scanf("%lld%s", &n, s);if (n & 1) puts("Alice");else puts("Bob");}return 0;}