Submission #1674526


Source Code Expand

S = input()
T = input()
at_mark_lst = list('atcoder')

bool_list = []
false_index = []
at_mark_bool = []


def get_bool_list(lst1, lst2):
    for i in range(len(lst1)):
        boolean = lst1[i] == lst2[i]
        bool_list.append(boolean)
    return bool_list


def get_false_index(boo_lst):
    for i in range(len(boo_lst)):
        if not boo_lst[i]:
            false_index.append(i)
    return false_index


def win_or_lose(boo_lst, fal_in, lst1, lst2):
    # All True
    if False not in boo_lst:
        print('You can win')
    elif ('@' in lst1) or ('@' in lst2):
        for i in fal_in:
            if lst1[i] == '@' and lst2[i] in at_mark_lst:
                at_mark_bool.append(True)
            elif lst2[i] == '@' and lst1[i] in at_mark_lst:
                at_mark_bool.append(True)
            else:
                at_mark_bool.append(False)
        if False not in at_mark_bool:
            print('You can win')
        else:
            print('You will lose')
    else:
        print('You will lose')


get_bool_list(S, T)
get_false_index(bool_list)
win_or_lose(bool_list, false_index, S, T)

Submission Info

Submission Time
Task A - AtCoder社の給料
User minimalism000
Language Python (3.4.3)
Score 0
Code Size 1157 Byte
Status RE
Exec Time 17 ms
Memory 3064 KB

Judge Result

Set Name All
Score / Max Score 0 / 100
Status
RE × 14
Set Name Test Cases
All 00_sample_01.txt, 00_sample_02.txt, test_100.txt, test_14.txt, test_29.txt, test_4.txt, test_42.txt, test_48.txt, test_54.txt, test_59.txt, test_71.txt, test_72.txt, test_84.txt, test_96.txt
Case Name Status Exec Time Memory
00_sample_01.txt RE 17 ms 3064 KB
00_sample_02.txt RE 17 ms 3064 KB
test_100.txt RE 17 ms 3064 KB
test_14.txt RE 16 ms 3064 KB
test_29.txt RE 17 ms 3064 KB
test_4.txt RE 17 ms 3064 KB
test_42.txt RE 17 ms 3064 KB
test_48.txt RE 17 ms 3064 KB
test_54.txt RE 17 ms 3064 KB
test_59.txt RE 17 ms 3064 KB
test_71.txt RE 17 ms 3064 KB
test_72.txt RE 17 ms 3064 KB
test_84.txt RE 17 ms 3064 KB
test_96.txt RE 17 ms 3064 KB