結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,284 KB
testcase_01 AC 37 ms
52,144 KB
testcase_02 AC 35 ms
52,484 KB
testcase_03 AC 35 ms
52,560 KB
testcase_04 AC 36 ms
54,092 KB
testcase_05 WA -
testcase_06 AC 37 ms
53,296 KB
testcase_07 AC 36 ms
52,500 KB
testcase_08 AC 36 ms
53,288 KB
testcase_09 AC 36 ms
53,216 KB
testcase_10 AC 36 ms
53,016 KB
testcase_11 AC 49 ms
52,420 KB
testcase_12 WA -
testcase_13 AC 36 ms
52,548 KB
testcase_14 AC 36 ms
52,508 KB
testcase_15 AC 39 ms
52,184 KB
testcase_16 AC 38 ms
53,292 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 36 ms
52,500 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 35 ms
52,692 KB
testcase_27 WA -
testcase_28 AC 36 ms
53,216 KB
testcase_29 WA -
testcase_30 AC 36 ms
52,164 KB
testcase_31 AC 38 ms
53,812 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 AC 38 ms
53,540 KB
testcase_35 AC 38 ms
52,224 KB
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 AC 36 ms
51,876 KB
testcase_41 AC 36 ms
53,140 KB
testcase_42 AC 35 ms
52,908 KB
testcase_43 AC 37 ms
53,720 KB
testcase_44 WA -
testcase_45 AC 36 ms
52,560 KB
testcase_46 WA -
権限があれば一括ダウンロードができます

ソースコード

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"] or C0["x"]!=C1["x"]:
    print("SUCCESS")
elif C0["o"]==3 or C0["x"]==3:
    print("FAILURE")
elif S0==S1:
    if N%2==0:
        print("FAILURE")
    else:
        print("SUCCESS")
else:
    ind = 0
    for i in range(3):
        if S0[i]==S1[i]:
            ind = i
            break
    if ind==0:
        if N%2==1:
            print("FAILURE")
        else:
            print("SUCCESS")
    else:
        if N%2==0:
            print("FAILURE")
        else:
            print("SUCCESS")
    
0