結果

問題 No.197 手品
ユーザー s_shoheis_shohei
提出日時 2020-08-02 18:13:46
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 403 bytes
コンパイル時間 1,027 ms
コンパイル使用メモリ 82,408 KB
実行使用メモリ 53,908 KB
最終ジャッジ日時 2024-07-19 04:07:03
合計ジャッジ時間 3,607 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,400 KB
testcase_01 AC 35 ms
53,256 KB
testcase_02 AC 38 ms
51,956 KB
testcase_03 AC 37 ms
52,156 KB
testcase_04 AC 35 ms
52,412 KB
testcase_05 AC 34 ms
52,376 KB
testcase_06 AC 33 ms
51,924 KB
testcase_07 AC 32 ms
52,356 KB
testcase_08 AC 35 ms
52,160 KB
testcase_09 AC 35 ms
52,612 KB
testcase_10 AC 34 ms
52,508 KB
testcase_11 AC 35 ms
52,084 KB
testcase_12 AC 34 ms
52,232 KB
testcase_13 AC 34 ms
52,572 KB
testcase_14 AC 35 ms
52,600 KB
testcase_15 AC 35 ms
52,692 KB
testcase_16 AC 33 ms
52,976 KB
testcase_17 AC 32 ms
52,428 KB
testcase_18 AC 33 ms
52,840 KB
testcase_19 AC 37 ms
52,356 KB
testcase_20 AC 37 ms
52,992 KB
testcase_21 AC 37 ms
52,852 KB
testcase_22 AC 35 ms
52,192 KB
testcase_23 AC 38 ms
52,272 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 33 ms
52,436 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 37 ms
52,372 KB
testcase_31 AC 37 ms
52,776 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 AC 39 ms
52,372 KB
testcase_35 AC 36 ms
51,820 KB
testcase_36 AC 35 ms
52,092 KB
testcase_37 AC 34 ms
52,188 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 AC 34 ms
53,164 KB
testcase_41 AC 35 ms
51,440 KB
testcase_42 AC 35 ms
52,056 KB
testcase_43 AC 34 ms
52,656 KB
testcase_44 AC 33 ms
52,880 KB
testcase_45 AC 35 ms
51,648 KB
testcase_46 AC 33 ms
52,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

b = input()
n = int(input())
a = input()

if a.count("x") != b.count("x"): # impossible
    print("SUCCESS")
    exit()

if a.count("x") == 0 or a.count("x")==3: # xxx,ooo
    print("FAILURE")
    exit()

if a=="oxo" or a=="xox":
    if n==1:
        print("SUCCESS")
    else:
        print("FAILURE")

else: # oox, xxo, xoo, oxx
    if n<=1:
        print("SUCCESS")
    else:
        print("FAILURE")
0