結果

問題 No.2715 Unique Chimatagram
ユーザー jmlumacad1
提出日時 2024-04-05 22:21:44
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 453 bytes
コンパイル時間 495 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-10-01 02:35:16
合計ジャッジ時間 5,508 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 22 WA * 18
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
s = []
for i in range(n):
	s.append(''.join(sorted(input())))
s.sort()

if n == 1:
	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