結果

問題 No.2715 Unique Chimatagram
ユーザー jmlumacad1jmlumacad1
提出日時 2024-04-05 22:31:59
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 573 bytes
コンパイル時間 402 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 11,008 KB
最終ジャッジ日時 2024-10-01 02:43:20
合計ジャッジ時間 4,017 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
10,752 KB
testcase_01 RE -
testcase_02 AC 27 ms
10,752 KB
testcase_03 AC 26 ms
10,752 KB
testcase_04 AC 26 ms
10,752 KB
testcase_05 AC 25 ms
10,752 KB
testcase_06 AC 26 ms
10,752 KB
testcase_07 AC 25 ms
10,752 KB
testcase_08 AC 28 ms
10,880 KB
testcase_09 AC 27 ms
10,752 KB
testcase_10 AC 27 ms
10,880 KB
testcase_11 AC 27 ms
10,752 KB
testcase_12 AC 26 ms
10,880 KB
testcase_13 AC 27 ms
10,880 KB
testcase_14 AC 27 ms
10,880 KB
testcase_15 AC 27 ms
10,880 KB
testcase_16 AC 28 ms
11,008 KB
testcase_17 AC 27 ms
10,752 KB
testcase_18 AC 28 ms
10,880 KB
testcase_19 AC 27 ms
10,880 KB
testcase_20 AC 28 ms
10,880 KB
testcase_21 AC 28 ms
10,880 KB
testcase_22 AC 28 ms
10,752 KB
testcase_23 AC 28 ms
10,752 KB
testcase_24 AC 29 ms
11,008 KB
testcase_25 AC 28 ms
10,880 KB
testcase_26 AC 29 ms
11,008 KB
testcase_27 AC 29 ms
10,752 KB
testcase_28 AC 28 ms
10,752 KB
testcase_29 AC 28 ms
10,752 KB
testcase_30 AC 27 ms
10,880 KB
testcase_31 AC 27 ms
10,752 KB
testcase_32 AC 27 ms
10,752 KB
testcase_33 AC 24 ms
10,752 KB
testcase_34 RE -
testcase_35 RE -
testcase_36 RE -
testcase_37 RE -
testcase_38 RE -
testcase_39 RE -
testcase_40 RE -
testcase_41 RE -
testcase_42 RE -
権限があれば一括ダウンロードができます

ソースコード

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 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