結果
問題 | No.602 隠されていたゲーム2 |
ユーザー | mkawa2 |
提出日時 | 2021-11-26 15:09:16 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 859 bytes |
コンパイル時間 | 163 ms |
コンパイル使用メモリ | 82,236 KB |
実行使用メモリ | 83,408 KB |
最終ジャッジ日時 | 2024-06-29 11:42:43 |
合計ジャッジ時間 | 2,614 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 39 ms
52,272 KB |
testcase_01 | AC | 38 ms
52,372 KB |
testcase_02 | AC | 38 ms
52,664 KB |
testcase_03 | WA | - |
testcase_04 | AC | 38 ms
54,276 KB |
testcase_05 | AC | 37 ms
51,820 KB |
testcase_06 | AC | 36 ms
52,216 KB |
testcase_07 | WA | - |
testcase_08 | AC | 37 ms
52,084 KB |
testcase_09 | AC | 38 ms
53,488 KB |
testcase_10 | AC | 39 ms
52,208 KB |
testcase_11 | AC | 36 ms
52,968 KB |
testcase_12 | AC | 38 ms
51,948 KB |
testcase_13 | AC | 38 ms
52,668 KB |
testcase_14 | AC | 38 ms
52,416 KB |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | AC | 47 ms
66,124 KB |
testcase_18 | AC | 57 ms
77,088 KB |
testcase_19 | AC | 61 ms
82,352 KB |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | AC | 64 ms
83,028 KB |
testcase_23 | WA | - |
ソースコード
import sys sys.setrecursionlimit(200005) int1 = lambda x: int(x)-1 p2D = lambda x: print(*x, sep="\n") def II(): return int(sys.stdin.readline()) def LI(): return list(map(int, sys.stdin.readline().split())) def LLI(rows_number): return [LI() for _ in range(rows_number)] def LI1(): return list(map(int1, sys.stdin.readline().split())) def LLI1(rows_number): return [LI1() for _ in range(rows_number)] def SI(): return sys.stdin.readline().rstrip() dij = [(0, 1), (-1, 0), (0, -1), (1, 0)] # dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)] # inf = 18446744073709551615 inf = 4294967295 md = 10**9+7 # md = 998244353 n = II() dd = LI() x, y = LI() x, y = abs(x+y), abs(x-y) if x < y: x, y = y, x if x in dd: print(1) exit() mx = max(dd) for d in dd: if x-mx <= d <= x+mx: print(2) exit() print(-1)