結果

問題 No.208 王将
ユーザー akanayaakanaya
提出日時 2020-04-05 16:46:28
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 239 bytes
コンパイル時間 74 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 44,556 KB
最終ジャッジ日時 2024-07-03 08:14:49
合計ジャッジ時間 13,509 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 463 ms
44,312 KB
testcase_01 AC 472 ms
44,176 KB
testcase_02 AC 468 ms
44,184 KB
testcase_03 AC 462 ms
43,928 KB
testcase_04 AC 461 ms
44,052 KB
testcase_05 AC 457 ms
43,924 KB
testcase_06 WA -
testcase_07 AC 468 ms
44,436 KB
testcase_08 AC 462 ms
43,924 KB
testcase_09 AC 456 ms
44,556 KB
testcase_10 AC 459 ms
44,304 KB
testcase_11 AC 457 ms
44,312 KB
testcase_12 AC 461 ms
44,060 KB
testcase_13 AC 462 ms
44,064 KB
testcase_14 AC 458 ms
44,052 KB
testcase_15 AC 451 ms
44,056 KB
testcase_16 AC 454 ms
44,432 KB
testcase_17 AC 465 ms
44,052 KB
testcase_18 AC 460 ms
44,440 KB
testcase_19 AC 465 ms
43,920 KB
testcase_20 AC 465 ms
44,308 KB
testcase_21 AC 461 ms
44,344 KB
testcase_22 AC 459 ms
44,304 KB
testcase_23 AC 476 ms
44,052 KB
testcase_24 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np

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

if x == y and x2 == y2 and np.sign(x) == np.sign(x2) and np.sign(y) == np.sign(y2):
    print(x + 1)
else:
    print(max([x, y]))


0