Submission #3421472


Source Code Expand

s = input()
t = input()
def_list = list()
for i in range(len(s)):
    if s[i] == t[i]:
        def_list.append(s[i])
if len(def_list)%2 == 0:
    print("Yes")
else:
    print("No")

Submission Info

Submission Time
Task B - String Rotation
User tbistr
Language Python (3.4.3)
Score 0
Code Size 189 Byte
Status WA
Exec Time 17 ms
Memory 2940 KB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 0 / 200
Status
AC × 1
WA × 2
AC × 8
WA × 6
Set Name Test Cases
Sample sample_01, sample_02, sample_03
All 0_small_0, 0_small_1, 0_small_2, 0_small_3, 1_medium_0, 1_medium_1, 1_medium_2, 2_max_0, 2_max_1, 2_max_2, 2_max_3, sample_01, sample_02, sample_03
Case Name Status Exec Time Memory
0_small_0 AC 17 ms 2940 KB
0_small_1 WA 17 ms 2940 KB
0_small_2 AC 17 ms 2940 KB
0_small_3 AC 17 ms 2940 KB
1_medium_0 AC 17 ms 2940 KB
1_medium_1 WA 17 ms 2936 KB
1_medium_2 AC 17 ms 2940 KB
2_max_0 AC 17 ms 2940 KB
2_max_1 WA 17 ms 2936 KB
2_max_2 WA 17 ms 2940 KB
2_max_3 AC 16 ms 2940 KB
sample_01 WA 17 ms 2940 KB
sample_02 WA 17 ms 2940 KB
sample_03 AC 17 ms 2940 KB