結果
| 問題 | No.3606 Ice Grid Game |
| コンテスト | |
| ユーザー |
だれおん
|
| 提出日時 | 2026-07-31 23:17:16 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 142 bytes |
| 記録 | |
| コンパイル時間 | 238 ms |
| コンパイル使用メモリ | 95,852 KB |
| 実行使用メモリ | 84,864 KB |
| 最終ジャッジ日時 | 2026-07-31 23:17:22 |
| 合計ジャッジ時間 | 2,429 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| 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:
print("Bob")
else:
print("Alice")
だれおん