結果
| 問題 | No.208 王将 |
| コンテスト | |
| ユーザー |
kbys
|
| 提出日時 | 2020-07-19 08:59:01 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 148 bytes |
| 記録 | |
| コンパイル時間 | 375 ms |
| コンパイル使用メモリ | 20,828 KB |
| 実行使用メモリ | 15,488 KB |
| 最終ジャッジ日時 | 2026-05-26 10:36:45 |
| 合計ジャッジ時間 | 3,874 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 17 WA * 6 |
ソースコード
x, y = map(int,input().split())
x2, y2 = map(int,input().split())
if x2 == y2 and x == y and x < x2:
print(max(x,y)+1)
else:
print(max(x,y))
kbys