結果

問題 No.602 隠されていたゲーム2
ユーザー wajima_wataruwajima_wataru
提出日時 2017-12-03 12:46:24
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 418 bytes
コンパイル時間 476 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 21,536 KB
最終ジャッジ日時 2024-05-06 05:09:53
合計ジャッジ時間 1,887 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,880 KB
testcase_01 AC 29 ms
10,752 KB
testcase_02 AC 29 ms
10,624 KB
testcase_03 AC 29 ms
10,624 KB
testcase_04 AC 30 ms
10,752 KB
testcase_05 AC 29 ms
10,624 KB
testcase_06 AC 28 ms
10,752 KB
testcase_07 AC 27 ms
10,752 KB
testcase_08 AC 29 ms
10,752 KB
testcase_09 WA -
testcase_10 AC 27 ms
10,752 KB
testcase_11 AC 28 ms
10,752 KB
testcase_12 AC 27 ms
10,752 KB
testcase_13 AC 28 ms
10,752 KB
testcase_14 AC 27 ms
10,624 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 42 ms
14,060 KB
testcase_18 AC 67 ms
19,340 KB
testcase_19 AC 73 ms
21,384 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 78 ms
21,512 KB
testcase_23 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

n = int(input())
d_arr = list(map(int, input().split()))
x, y = map(lambda n: abs(int(n)), input().split())

if x == 0 and y == 0:
    print(0)
    sys.exit()

for d in d_arr:
    if d == x + y:
        print(1)
        sys.exit()

odd = 0
even = 0
for d in d_arr:
    if d % 2 == 0:
        even += 1
    else:
        odd += 1
    if even >= 2 or odd >= 2:
        print(2)
        sys.exit()

print(-1)
0