結果
| 問題 | No.3606 Ice Grid Game |
| コンテスト | |
| ユーザー |
detteiuu
|
| 提出日時 | 2026-07-31 22:26:41 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
AC
|
| 実行時間 | 85 ms / 2,000 ms |
| + 619µs | |
| コード長 | 226 bytes |
| 記録 | |
| コンパイル時間 | 1,113 ms |
| コンパイル使用メモリ | 96,116 KB |
| 実行使用メモリ | 84,352 KB |
| 最終ジャッジ日時 | 2026-07-31 22:26:44 |
| 合計ジャッジ時間 | 2,287 ms |
|
ジャッジサーバーID (参考情報) |
judge2_1 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 11 |
ソースコード
from sys import stdin
input = stdin.readline
for _ in range(int(input())):
H, W, R, C = map(int, input().split())
if (H, W, R, C) in [(1, 1, 1, 1), (7, 7, 4, 4)]:
print("Bob")
else:
print("Alice")
detteiuu