結果

問題 No.197 手品
ユーザー 👑 KazunKazun
提出日時 2020-10-27 04:36:08
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 405 bytes
コンパイル時間 160 ms
コンパイル使用メモリ 82,368 KB
実行使用メモリ 65,320 KB
最終ジャッジ日時 2024-07-21 21:50:08
合計ジャッジ時間 3,307 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,896 KB
testcase_01 AC 40 ms
52,404 KB
testcase_02 AC 38 ms
53,216 KB
testcase_03 AC 38 ms
52,412 KB
testcase_04 AC 38 ms
52,584 KB
testcase_05 AC 38 ms
52,572 KB
testcase_06 AC 38 ms
52,092 KB
testcase_07 AC 38 ms
53,696 KB
testcase_08 AC 38 ms
53,296 KB
testcase_09 AC 38 ms
52,576 KB
testcase_10 AC 39 ms
52,628 KB
testcase_11 AC 38 ms
52,688 KB
testcase_12 AC 38 ms
53,020 KB
testcase_13 AC 38 ms
52,208 KB
testcase_14 AC 37 ms
52,688 KB
testcase_15 AC 38 ms
52,684 KB
testcase_16 AC 38 ms
52,476 KB
testcase_17 AC 38 ms
52,528 KB
testcase_18 AC 38 ms
52,068 KB
testcase_19 AC 38 ms
52,372 KB
testcase_20 AC 38 ms
53,164 KB
testcase_21 AC 39 ms
53,940 KB
testcase_22 AC 38 ms
53,856 KB
testcase_23 AC 38 ms
52,860 KB
testcase_24 WA -
testcase_25 AC 38 ms
52,540 KB
testcase_26 WA -
testcase_27 AC 38 ms
52,444 KB
testcase_28 AC 40 ms
52,864 KB
testcase_29 AC 38 ms
52,892 KB
testcase_30 AC 39 ms
53,284 KB
testcase_31 AC 38 ms
52,824 KB
testcase_32 AC 38 ms
53,512 KB
testcase_33 AC 38 ms
52,572 KB
testcase_34 WA -
testcase_35 AC 38 ms
52,792 KB
testcase_36 AC 38 ms
53,040 KB
testcase_37 AC 39 ms
52,684 KB
testcase_38 AC 38 ms
53,292 KB
testcase_39 AC 38 ms
53,796 KB
testcase_40 AC 39 ms
52,824 KB
testcase_41 AC 39 ms
52,996 KB
testcase_42 RE -
testcase_43 AC 38 ms
53,104 KB
testcase_44 AC 38 ms
52,680 KB
testcase_45 AC 39 ms
52,400 KB
testcase_46 AC 39 ms
52,772 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S=input()
N=int(input())
T=input()

o,x="o","x"
if S.count(o)!=T.count(o):
    print("SUCCESS")
    exit()

if S.count(o)==1:
    p=S.index(o)
    q=T.index(o)
else:
    p=S.index(x)
    q=T.index(x)

if N==0:
    F=(p!=q)
elif N==1:
    if p==0:
        F=(q==2)
    elif p==1:
        F=(q==0) or (q==2)
    else:
        F=(q==0)
else:
    F=False

if F:
    print("SUCCESS")
else:
    print("FAILURE")
0