結果

問題 No.2715 Unique Chimatagram
ユーザー jmlumacad1jmlumacad1
提出日時 2024-04-05 22:21:44
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 453 bytes
コンパイル時間 495 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-10-01 02:35:16
合計ジャッジ時間 5,508 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

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