結果

問題 No.197 手品
ユーザー yuppe19 😺yuppe19 😺
提出日時 2015-04-29 06:11:02
言語 Python2
(2.7.18)
結果
WA  
実行時間 -
コード長 691 bytes
コンパイル時間 90 ms
コンパイル使用メモリ 6,912 KB
実行使用メモリ 7,424 KB
最終ジャッジ日時 2024-06-27 08:50:56
合計ジャッジ時間 7,578 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 14 ms
7,168 KB
testcase_01 AC 14 ms
7,168 KB
testcase_02 AC 15 ms
7,168 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 15 ms
7,168 KB
testcase_06 AC 715 ms
7,296 KB
testcase_07 AC 715 ms
7,168 KB
testcase_08 AC 15 ms
7,296 KB
testcase_09 AC 715 ms
7,168 KB
testcase_10 AC 15 ms
7,296 KB
testcase_11 AC 15 ms
7,296 KB
testcase_12 AC 15 ms
7,296 KB
testcase_13 AC 15 ms
7,296 KB
testcase_14 AC 15 ms
7,040 KB
testcase_15 AC 14 ms
7,296 KB
testcase_16 AC 14 ms
7,040 KB
testcase_17 AC 14 ms
7,296 KB
testcase_18 AC 14 ms
7,296 KB
testcase_19 AC 14 ms
7,040 KB
testcase_20 AC 15 ms
7,296 KB
testcase_21 AC 15 ms
7,296 KB
testcase_22 AC 15 ms
7,296 KB
testcase_23 AC 15 ms
7,296 KB
testcase_24 AC 15 ms
7,168 KB
testcase_25 AC 15 ms
7,168 KB
testcase_26 AC 714 ms
7,296 KB
testcase_27 AC 15 ms
7,168 KB
testcase_28 AC 14 ms
7,168 KB
testcase_29 AC 15 ms
7,168 KB
testcase_30 AC 715 ms
7,296 KB
testcase_31 AC 15 ms
7,296 KB
testcase_32 AC 715 ms
7,168 KB
testcase_33 AC 14 ms
7,040 KB
testcase_34 AC 714 ms
7,168 KB
testcase_35 AC 15 ms
7,040 KB
testcase_36 AC 14 ms
7,168 KB
testcase_37 AC 15 ms
7,168 KB
testcase_38 AC 14 ms
7,296 KB
testcase_39 AC 15 ms
7,296 KB
testcase_40 AC 716 ms
7,296 KB
testcase_41 AC 14 ms
7,168 KB
testcase_42 AC 15 ms
7,296 KB
testcase_43 WA -
testcase_44 AC 15 ms
7,168 KB
testcase_45 AC 15 ms
7,296 KB
testcase_46 AC 15 ms
7,168 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/python
from random import randint
from datetime import datetime
start = datetime.now()

def nya(s0, s1, n):
    while 1:
        a, b, c = s0
        x, y, z = s1
        for _ in xrange(n):
            if randint(0, 1):
                b, a = a, b
            else:
                c, b = b, c
        if (a, b, c) == (x, y, z):
            return 0
        now = datetime.now()
        if (now - start).total_seconds() >= .7:
            break
    return 1

def fushigi(s0, s1, n):
    if n <= 1:
        return nya(s0, s1, n)
    else:
        return 0

s0 = raw_input()
n = int(raw_input())
s1 = raw_input()
if fushigi(s0, s1, n):
    print 'SUCCESS'
else:
    print 'FAILURE'
0