結果
| 問題 | No.3606 Ice Grid Game |
| コンテスト | |
| ユーザー |
だれおん
|
| 提出日時 | 2026-07-31 23:19:26 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 151 bytes |
| 記録 | |
| コンパイル時間 | 228 ms |
| コンパイル使用メモリ | 96,104 KB |
| 実行使用メモリ | 85,120 KB |
| 最終ジャッジ日時 | 2026-07-31 23:19:29 |
| 合計ジャッジ時間 | 2,199 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge1_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 9 WA * 2 |
ソースコード
Q=int(input())
for _ in range(Q):
a,b,c,d=map(int,input().split())
if a==b and c*2-1==a and d*2-1==b and a!=3:
print("Bob")
else:
print("Alice")
だれおん