結果

問題 No.517 壊れたアクセサリー
ユーザー roarisroaris
提出日時 2019-08-16 12:12:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 37 ms / 2,000 ms
コード長 723 bytes
コンパイル時間 212 ms
コンパイル使用メモリ 82,520 KB
実行使用メモリ 53,816 KB
最終ジャッジ日時 2024-09-22 03:19:51
合計ジャッジ時間 1,846 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,748 KB
testcase_01 AC 35 ms
53,816 KB
testcase_02 AC 35 ms
52,836 KB
testcase_03 AC 36 ms
52,196 KB
testcase_04 AC 35 ms
52,808 KB
testcase_05 AC 34 ms
53,024 KB
testcase_06 AC 36 ms
53,476 KB
testcase_07 AC 37 ms
52,984 KB
testcase_08 AC 35 ms
52,000 KB
testcase_09 AC 35 ms
52,204 KB
testcase_10 AC 35 ms
52,132 KB
testcase_11 AC 35 ms
53,200 KB
testcase_12 AC 35 ms
53,124 KB
testcase_13 AC 35 ms
53,024 KB
testcase_14 AC 35 ms
52,136 KB
testcase_15 AC 35 ms
53,808 KB
testcase_16 AC 36 ms
52,952 KB
testcase_17 AC 35 ms
53,204 KB
testcase_18 AC 35 ms
52,876 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = [input() for _ in range(N)]
M = int(input())
B = [input() for _ in range(M)]

for i in range(N):
    for j in range(M):
        if A[i][0] == B[j][0]:
            str0, str1 = A.pop(i), B.pop(j)
            break
    else:
        continue
    break

while True:
    if str0 == str1:
        if len(A) == 0 and len(B) == 0:
            print(str0)
        else:
            print(-1)
        break
    
    if len(str0) > len(str1):
        for i in range(len(B)):
            if B[i][0] == str0[len(str1)]:
                str1 += B.pop(i)
                break
    else:
        for i in range(len(A)):
            if A[i][0] == str1[len(str0)]:
                str0 += A.pop(i)
                break
0