結果
| 問題 | No.208 王将 |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2019-08-13 15:42:04 |
| 言語 | Python3 (3.14.7 + numpy 2.5.2 + scipy 1.18.0 + ACL) |
| 結果 |
AC
不安定
|
| 実行時間 | 90 ms / 1,000 ms |
| + 469µs | |
| コード長 | 137 bytes |
| 記録 | |
| コンパイル時間 | 453 ms |
| コンパイル使用メモリ | 21,208 KB |
| 実行使用メモリ | 15,784 KB |
| 最終ジャッジ日時 | 2026-08-31 02:26:17 |
| 合計ジャッジ時間 | 4,355 ms |
|
ジャッジサーバーID (参考情報) |
judge3_1 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 23 |
ソースコード
x, y = map(int,input().split())
x2, y2 = map(int,input().split())
z = max(x, y)
if x == y and x2 == y2 and x2 < x:
z += 1
print(z)