結果

問題 No.197 手品
ユーザー mkawa2mkawa2
提出日時 2020-01-02 12:28:41
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 503 ms / 1,000 ms
コード長 1,251 bytes
コンパイル時間 77 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 44,536 KB
最終ジャッジ日時 2024-07-20 03:59:27
合計ジャッジ時間 24,791 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 459 ms
44,480 KB
testcase_01 AC 477 ms
44,152 KB
testcase_02 AC 479 ms
44,536 KB
testcase_03 AC 485 ms
44,196 KB
testcase_04 AC 463 ms
44,152 KB
testcase_05 AC 458 ms
44,152 KB
testcase_06 AC 450 ms
44,412 KB
testcase_07 AC 462 ms
44,404 KB
testcase_08 AC 454 ms
44,028 KB
testcase_09 AC 457 ms
44,276 KB
testcase_10 AC 469 ms
44,412 KB
testcase_11 AC 461 ms
44,160 KB
testcase_12 AC 474 ms
44,276 KB
testcase_13 AC 457 ms
44,284 KB
testcase_14 AC 463 ms
44,408 KB
testcase_15 AC 473 ms
44,024 KB
testcase_16 AC 472 ms
44,284 KB
testcase_17 AC 477 ms
44,408 KB
testcase_18 AC 454 ms
44,156 KB
testcase_19 AC 456 ms
44,148 KB
testcase_20 AC 462 ms
44,152 KB
testcase_21 AC 468 ms
44,152 KB
testcase_22 AC 462 ms
44,408 KB
testcase_23 AC 463 ms
44,408 KB
testcase_24 AC 472 ms
44,148 KB
testcase_25 AC 466 ms
44,280 KB
testcase_26 AC 469 ms
44,016 KB
testcase_27 AC 457 ms
44,424 KB
testcase_28 AC 458 ms
44,516 KB
testcase_29 AC 503 ms
44,536 KB
testcase_30 AC 489 ms
44,408 KB
testcase_31 AC 488 ms
44,156 KB
testcase_32 AC 471 ms
44,148 KB
testcase_33 AC 452 ms
44,412 KB
testcase_34 AC 480 ms
44,412 KB
testcase_35 AC 483 ms
44,152 KB
testcase_36 AC 472 ms
44,152 KB
testcase_37 AC 475 ms
44,212 KB
testcase_38 AC 477 ms
44,408 KB
testcase_39 AC 471 ms
44,280 KB
testcase_40 AC 470 ms
44,156 KB
testcase_41 AC 455 ms
44,532 KB
testcase_42 AC 458 ms
44,408 KB
testcase_43 AC 462 ms
44,276 KB
testcase_44 AC 459 ms
44,148 KB
testcase_45 AC 482 ms
44,276 KB
testcase_46 AC 463 ms
44,172 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import *
from bisect import *
#from math import *
from collections import *
from heapq import *
from random import *
from decimal import *
import numpy as np
import sys

sys.setrecursionlimit(10 ** 6)
int1 = lambda x: int(x) - 1
p2D = lambda x: print(*x, sep="\n")
def II(): return int(sys.stdin.readline())
def MI(): return map(int, sys.stdin.readline().split())
def MI1(): return map(int1, sys.stdin.readline().split())
def MF(): return map(float, sys.stdin.readline().split())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LI1(): return list(map(int1, sys.stdin.readline().split()))
def LF(): return list(map(float, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
dij = [(1, 0), (0, 1), (-1, 0), (0, -1)]

def main():
    s=input()
    n=II()
    t=input()
    sn=s.count("o")
    tn=t.count("o")
    if sn!=tn:
        print("SUCCESS")
        exit()
    if sn in [0,3]:
        print("FAILURE")
        exit()
    if n==0 and t!=s:
        print("SUCCESS")
        exit()
    if n==1:
        if (s[0]==s[1] and t[1]==t[2]) or (s[1]==s[2] and t[0]==t[1]) or (s[0]==s[2] and t[0]==t[2]):
            print("SUCCESS")
            exit()
    print("FAILURE")

main()
0