結果
問題 |
No.3108 Luke or Bishop
|
ユーザー |
|
提出日時 | 2025-04-19 18:03:04 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
RE
|
実行時間 | - |
コード長 | 437 bytes |
コンパイル時間 | 474 ms |
コンパイル使用メモリ | 12,416 KB |
実行使用メモリ | 11,648 KB |
最終ジャッジ日時 | 2025-04-19 18:03:07 |
合計ジャッジ時間 | 2,773 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | RE * 2 |
other | RE * 26 |
ソースコード
def min_moves(Gx, Gy): rook_moves = 0 if Gx == 0 and Gy == 0: rook_moves = 0 elif Gx == 0 or Gy == 0: rook_moves = 1 else: rook_moves = 2 if (Gx + Gy) % 2 != 0: bishop_moves = float('inf') elif Gx == Gy or Gx == -Gy: bishop_moves = 1 else: bishop_moves = 2 return min(rook_moves, bishop_moves) Gx = int(input()) Gy = int(input()) print(min_moves(Gx, Gy))