結果
| 問題 |
No.2715 Unique Chimatagram
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2024-04-05 22:31:59 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 573 bytes |
| コンパイル時間 | 402 ms |
| コンパイル使用メモリ | 12,800 KB |
| 実行使用メモリ | 11,008 KB |
| 最終ジャッジ日時 | 2024-10-01 02:43:20 |
| 合計ジャッジ時間 | 4,017 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 RE * 1 |
| other | AC * 31 RE * 9 |
ソースコード
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)