結果
問題 | No.517 壊れたアクセサリー |
ユーザー | titia |
提出日時 | 2024-01-20 00:49:05 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
AC
|
実行時間 | 33 ms / 2,000 ms |
コード長 | 1,519 bytes |
コンパイル時間 | 513 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 11,008 KB |
最終ジャッジ日時 | 2024-09-28 05:19:07 |
合計ジャッジ時間 | 1,843 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 31 ms
11,008 KB |
testcase_01 | AC | 33 ms
10,880 KB |
testcase_02 | AC | 32 ms
10,880 KB |
testcase_03 | AC | 31 ms
11,008 KB |
testcase_04 | AC | 31 ms
10,880 KB |
testcase_05 | AC | 31 ms
10,880 KB |
testcase_06 | AC | 33 ms
10,880 KB |
testcase_07 | AC | 32 ms
10,880 KB |
testcase_08 | AC | 33 ms
10,880 KB |
testcase_09 | AC | 31 ms
11,008 KB |
testcase_10 | AC | 31 ms
11,008 KB |
testcase_11 | AC | 31 ms
10,880 KB |
testcase_12 | AC | 32 ms
11,008 KB |
testcase_13 | AC | 31 ms
10,880 KB |
testcase_14 | AC | 32 ms
10,880 KB |
testcase_15 | AC | 31 ms
10,752 KB |
testcase_16 | AC | 31 ms
10,880 KB |
testcase_17 | AC | 31 ms
10,880 KB |
testcase_18 | AC | 32 ms
10,880 KB |
ソースコード
from collections import deque N=int(input()) A=[input() for i in range(N)] M=int(input()) B=[input() for i in range(M)] AQ=deque() BQ=deque() ANS=[] while (A and B) or AQ or BQ: if AQ and BQ: if AQ[0] and BQ[0]: s=AQ.popleft() BQ.popleft() ANS.append(s) continue else: print(-1) exit() if AQ: s=AQ[0] ind=-1 for i in range(len(B)): if B[i][0]==s: ind=i break if ind==-1: print(-1) exit() else: BQ=deque(B[ind]) B.pop(ind) continue if BQ: s=BQ[0] ind=-1 for i in range(len(A)): if A[i][0]==s: ind=i break if ind==-1: print(-1) exit() else: AQ=deque(A[ind]) A.pop(ind) continue SA=set() SB=set() for a in A: SA.add(a[0]) for b in B: SB.add(b[0]) SS=SA & SB if len(SS)==1: s=list(SS)[0] for i in range(len(A)): if A[i][0]==s: ind=i break AQ=deque(A[ind]) A.pop(ind) for i in range(len(B)): if B[i][0]==s: ind=i break BQ=deque(B[ind]) B.pop(ind) else: print(-1) exit() print("".join(ANS))