結果

問題 No.208 王将
コンテスト
ユーザー akitsugu777
提出日時 2019-08-13 15:43:37
言語 Python3
(3.14.2 + numpy 2.4.0 + scipy 1.16.3)
結果
AC  
実行時間 30 ms / 1,000 ms
コード長 129 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 85 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-09-19 13:30:07
合計ジャッジ時間 1,502 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 23
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

x, y = map(int,input().split())
x2, y2 = map(int,input().split())

z = max(x, y)

print([z, z+1][x == y and x2 == y2 and x2 < x])
0