結果

問題 No.197 手品
ユーザー flippergoflippergo
提出日時 2024-10-28 09:47:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 38 ms / 1,000 ms
コード長 760 bytes
コンパイル時間 493 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 54,368 KB
最終ジャッジ日時 2024-10-28 09:48:02
合計ジャッジ時間 3,858 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,800 KB
testcase_01 AC 36 ms
53,044 KB
testcase_02 AC 36 ms
52,772 KB
testcase_03 AC 36 ms
53,432 KB
testcase_04 AC 37 ms
53,564 KB
testcase_05 AC 36 ms
52,692 KB
testcase_06 AC 37 ms
52,472 KB
testcase_07 AC 37 ms
52,236 KB
testcase_08 AC 37 ms
52,696 KB
testcase_09 AC 37 ms
52,268 KB
testcase_10 AC 37 ms
52,084 KB
testcase_11 AC 37 ms
52,356 KB
testcase_12 AC 37 ms
52,968 KB
testcase_13 AC 35 ms
53,088 KB
testcase_14 AC 37 ms
52,944 KB
testcase_15 AC 36 ms
51,940 KB
testcase_16 AC 38 ms
53,676 KB
testcase_17 AC 37 ms
52,140 KB
testcase_18 AC 37 ms
51,872 KB
testcase_19 AC 37 ms
52,200 KB
testcase_20 AC 37 ms
52,304 KB
testcase_21 AC 36 ms
53,072 KB
testcase_22 AC 35 ms
52,644 KB
testcase_23 AC 36 ms
52,664 KB
testcase_24 AC 37 ms
52,460 KB
testcase_25 AC 36 ms
52,944 KB
testcase_26 AC 36 ms
51,940 KB
testcase_27 AC 37 ms
53,628 KB
testcase_28 AC 38 ms
54,368 KB
testcase_29 AC 37 ms
52,076 KB
testcase_30 AC 37 ms
52,660 KB
testcase_31 AC 37 ms
53,816 KB
testcase_32 AC 37 ms
52,504 KB
testcase_33 AC 37 ms
53,100 KB
testcase_34 AC 37 ms
52,760 KB
testcase_35 AC 37 ms
52,432 KB
testcase_36 AC 36 ms
52,200 KB
testcase_37 AC 35 ms
52,432 KB
testcase_38 AC 37 ms
52,248 KB
testcase_39 AC 37 ms
52,252 KB
testcase_40 AC 37 ms
52,208 KB
testcase_41 AC 36 ms
52,612 KB
testcase_42 AC 37 ms
52,276 KB
testcase_43 AC 37 ms
53,720 KB
testcase_44 AC 36 ms
52,872 KB
testcase_45 AC 37 ms
53,080 KB
testcase_46 AC 36 ms
53,076 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S0 = input()
N = int(input())
S1 = input()
C0 = {"o":0,"x":0}
C0["o"] = S0.count("o")
C0["x"] = S0.count("x")
C1 = {"o":0,"x":0}
C1["o"] = S1.count("o")
C1["x"] = S1.count("x")
if C0["o"]!=C1["o"]:
    print("SUCCESS")
elif C0["o"]==3 or C0["x"]==3:
    print("FAILURE")
elif S0==S1:
    if S0=="oxo" or S0=="xox":
        if N!=1:
            print("FAILURE")
        else:
            print("SUCCESS")
    else:
        print("FAILURE")
else:
    ind = 0
    for i in range(3):
        if S0[i]==S1[i]:
            ind = i
            break
    if ind==0 or ind==2:
        if N>=1:
            print("FAILURE")
        else:
            print("SUCCESS")
    else:
        if N>=2:
            print("FAILURE")
        else:
            print("SUCCESS")
    
0