結果

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

テストケース

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

ソースコード

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