結果
問題 | No.208 王将 |
ユーザー | ktshun |
提出日時 | 2015-06-02 11:18:00 |
言語 | Python2 (2.7.18) |
結果 |
WA
|
実行時間 | - |
コード長 | 241 bytes |
コンパイル時間 | 142 ms |
コンパイル使用メモリ | 7,040 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-07-06 13:20:36 |
合計ジャッジ時間 | 1,285 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 9 ms
6,272 KB |
testcase_06 | AC | 8 ms
6,144 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 9 ms
6,272 KB |
testcase_10 | AC | 9 ms
6,144 KB |
testcase_11 | WA | - |
testcase_12 | AC | 9 ms
6,144 KB |
testcase_13 | AC | 8 ms
6,144 KB |
testcase_14 | AC | 9 ms
6,272 KB |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | AC | 9 ms
6,272 KB |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | AC | 9 ms
6,272 KB |
testcase_24 | AC | 9 ms
6,144 KB |
ソースコード
# -*- coding:utf-8 -*- if __name__ == "__main__": x,y = map(int,raw_input().split()) x2,y2 = map(int,raw_input().split()) ans = max(x,y) if min(x,0) <= x2 and x2 <= max(x,0): if min(y,0) <= y2 and y2 <= max(y,0): ans += 1 print ans