結果

問題 No.197 手品
ユーザー flippergoflippergo
提出日時 2024-10-28 09:44:49
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 762 bytes
コンパイル時間 649 ms
コンパイル使用メモリ 82,788 KB
実行使用メモリ 54,188 KB
最終ジャッジ日時 2024-10-28 09:44:53
合計ジャッジ時間 4,055 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,612 KB
testcase_01 AC 36 ms
52,884 KB
testcase_02 AC 35 ms
52,348 KB
testcase_03 AC 34 ms
52,492 KB
testcase_04 AC 34 ms
52,140 KB
testcase_05 AC 35 ms
52,840 KB
testcase_06 AC 38 ms
53,436 KB
testcase_07 AC 38 ms
52,676 KB
testcase_08 AC 36 ms
52,332 KB
testcase_09 AC 36 ms
52,388 KB
testcase_10 AC 36 ms
52,208 KB
testcase_11 AC 36 ms
52,288 KB
testcase_12 AC 36 ms
52,328 KB
testcase_13 AC 38 ms
52,612 KB
testcase_14 AC 36 ms
52,696 KB
testcase_15 AC 37 ms
53,288 KB
testcase_16 AC 37 ms
52,208 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 34 ms
52,616 KB
testcase_21 AC 34 ms
53,056 KB
testcase_22 AC 34 ms
53,620 KB
testcase_23 AC 34 ms
52,636 KB
testcase_24 AC 34 ms
52,828 KB
testcase_25 AC 37 ms
53,576 KB
testcase_26 AC 34 ms
52,912 KB
testcase_27 AC 35 ms
53,008 KB
testcase_28 AC 37 ms
52,268 KB
testcase_29 AC 35 ms
53,308 KB
testcase_30 AC 35 ms
52,112 KB
testcase_31 AC 36 ms
53,020 KB
testcase_32 AC 35 ms
53,284 KB
testcase_33 AC 35 ms
53,004 KB
testcase_34 AC 35 ms
52,024 KB
testcase_35 AC 35 ms
52,612 KB
testcase_36 AC 36 ms
52,064 KB
testcase_37 WA -
testcase_38 AC 35 ms
52,600 KB
testcase_39 AC 36 ms
53,072 KB
testcase_40 AC 35 ms
52,288 KB
testcase_41 AC 36 ms
53,024 KB
testcase_42 AC 35 ms
52,356 KB
testcase_43 AC 35 ms
52,760 KB
testcase_44 WA -
testcase_45 AC 36 ms
52,944 KB
testcase_46 AC 35 ms
53,192 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%2==0:
            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