結果

問題 No.208 王将
ユーザー brthyyjpbrthyyjp
提出日時 2021-12-09 19:23:22
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 167 bytes
コンパイル時間 294 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 53,828 KB
最終ジャッジ日時 2024-07-17 11:56:00
合計ジャッジ時間 2,317 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,380 KB
testcase_01 AC 38 ms
52,476 KB
testcase_02 AC 37 ms
53,096 KB
testcase_03 AC 37 ms
51,940 KB
testcase_04 AC 37 ms
51,956 KB
testcase_05 AC 36 ms
52,052 KB
testcase_06 WA -
testcase_07 AC 41 ms
53,028 KB
testcase_08 AC 37 ms
52,632 KB
testcase_09 AC 37 ms
52,484 KB
testcase_10 AC 38 ms
52,100 KB
testcase_11 AC 38 ms
53,536 KB
testcase_12 AC 38 ms
52,364 KB
testcase_13 AC 38 ms
52,236 KB
testcase_14 AC 37 ms
53,012 KB
testcase_15 AC 38 ms
51,616 KB
testcase_16 AC 37 ms
52,508 KB
testcase_17 AC 36 ms
52,332 KB
testcase_18 AC 36 ms
52,568 KB
testcase_19 AC 37 ms
52,384 KB
testcase_20 AC 38 ms
52,084 KB
testcase_21 AC 36 ms
52,716 KB
testcase_22 AC 37 ms
52,896 KB
testcase_23 AC 37 ms
52,440 KB
testcase_24 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

x,y = map(int, input().split())
x2,y2 = map(int, input().split())
if x != y:
    print(max(x, y))
else:
    if x2 == y2:
        print(x+1)
    else:
        print(x)
0