結果
問題 | No.197 手品 |
ユーザー | cozy_sauna |
提出日時 | 2021-10-26 13:01:31 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,048 bytes |
コンパイル時間 | 187 ms |
コンパイル使用メモリ | 82,264 KB |
実行使用メモリ | 66,192 KB |
最終ジャッジ日時 | 2024-10-05 06:51:02 |
合計ジャッジ時間 | 4,020 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 53 ms
64,336 KB |
testcase_01 | AC | 50 ms
64,640 KB |
testcase_02 | AC | 51 ms
65,564 KB |
testcase_03 | AC | 50 ms
64,464 KB |
testcase_04 | AC | 51 ms
65,156 KB |
testcase_05 | AC | 51 ms
64,144 KB |
testcase_06 | AC | 51 ms
64,336 KB |
testcase_07 | AC | 50 ms
65,000 KB |
testcase_08 | AC | 55 ms
64,952 KB |
testcase_09 | AC | 52 ms
65,724 KB |
testcase_10 | AC | 51 ms
64,812 KB |
testcase_11 | AC | 53 ms
64,428 KB |
testcase_12 | WA | - |
testcase_13 | AC | 51 ms
64,544 KB |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | AC | 51 ms
65,024 KB |
testcase_24 | AC | 50 ms
64,264 KB |
testcase_25 | AC | 51 ms
64,544 KB |
testcase_26 | AC | 51 ms
65,276 KB |
testcase_27 | WA | - |
testcase_28 | AC | 52 ms
65,112 KB |
testcase_29 | WA | - |
testcase_30 | AC | 50 ms
65,832 KB |
testcase_31 | AC | 50 ms
64,396 KB |
testcase_32 | AC | 49 ms
64,580 KB |
testcase_33 | WA | - |
testcase_34 | AC | 51 ms
65,052 KB |
testcase_35 | AC | 52 ms
65,300 KB |
testcase_36 | WA | - |
testcase_37 | WA | - |
testcase_38 | AC | 54 ms
65,764 KB |
testcase_39 | WA | - |
testcase_40 | AC | 54 ms
65,780 KB |
testcase_41 | WA | - |
testcase_42 | AC | 55 ms
64,992 KB |
testcase_43 | AC | 56 ms
65,768 KB |
testcase_44 | WA | - |
testcase_45 | AC | 49 ms
64,332 KB |
testcase_46 | WA | - |
ソースコード
from sys import setrecursionlimit, stdin from collections import defaultdict, deque from itertools import permutations, combinations, product from functools import lru_cache from random import sample, choice, randint, random from heapq import heappush, heappop from math import factorial, gcd, exp from copy import copy, deepcopy from time import time setrecursionlimit(10 ** 6) readline = stdin.readline # @lru_cache(maxsize=None) INF = 10 ** 18 MOD = 1000000007 # MOD = 998244353 DYDX = [(-1, 0), (1, 0), (0, -1), (0, 1)] def I(): return int(readline()) def S(): return readline()[:-1] def LI(): return list(map(int, readline().split())) def SPI(): return map(int, readline().split()) def SPII(): return map(lambda x: int(x)-1, readline().split()) def FIE(x): return [readline()[:-1] for _ in [0] * x] def NODE(x): return [[] for _ in [0] * x] def ranges(*args): return [(i, j) for i in range(args[0]) for j in range(args[-1])] def nynx(y, x, ly = INF, lx = INF): return [(y+dy, x+dx) for dy, dx in DYDX if 0 <= y+dy < ly and 0 <= x+dx < lx] def imax(A, idx=-1, m=-(1<<18)): for i, a in enumerate(A): m, idx = [[m, idx], [a, i]][m < a] return idx def imin(A, idx=-1, m=1<<18): for i, a in enumerate(A): m, idx = [[m, idx], [a, i]][m > a] return idx def cmin(dp, i, x): if x < dp[i]: dp[i] = x def cmax(dp, i, x): if x > dp[i]: dp[i] = x def gen(x, *args): ret = [x] * args[-1] for e in args[:-1][::-1]: ret = [deepcopy(ret) for _ in [0] * e] return ret def puts(E): for e in E: print(e) def pprint(E): print() puts(E) #################################################################### B = input() N = I() A = input() def check(A, B, N): a = A.count('x') b = B.count('x') if a != b: return True if a == 0 or a == 3: return False if a == 1: i = A.index('x') ii = B.index('x') else: i = A.index('o') ii = B.index('o') d = abs(i-ii) if N < d: return True return (N-d) % 2 == 1 print('SUCCESS' if check(A, B, N) else 'FAILURE')