結果

問題 No.2715 Unique Chimatagram
ユーザー jmlumacad1
提出日時 2024-04-05 22:39:51
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 598 bytes
コンパイル時間 292 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 11,008 KB
最終ジャッジ日時 2024-10-01 02:47:39
合計ジャッジ時間 3,204 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 36 WA * 4
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
s = []
for i in range(n):
	s.append(''.join(sorted(input())))
s.sort()
d = {}
for si in s:
	if si in d:
		d[si] = False
	else:
		d[si] = True
s = []
for key in d:
	if d[key]:
		s.append(key)
if len(s) == 0: print(-1)
elif True:
	print(s[0] + "a")
else:
	f = True
	for i in range(n-1):
		a, b = s[i], s[i+1]
		if a == b: continue
		if len(a) < len(b):
			print(a + "a")
		else:
			for j in range(len(a)):
				if a[j] != b[j]:
					for c in "abcdefghijklmnopqrstuvwxyz":
						if c != a[j] and c != b[j]:
							print(a+c)
							break
					break
		f = False
		break
	if f: print(-1)
0