結果
| 問題 |
No.2715 Unique Chimatagram
|
| コンテスト | |
| ユーザー |
👑 |
| 提出日時 | 2024-04-05 22:47:15 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
AC
|
| 実行時間 | 191 ms / 2,000 ms |
| コード長 | 437 bytes |
| コンパイル時間 | 239 ms |
| コンパイル使用メモリ | 82,624 KB |
| 実行使用メモリ | 94,028 KB |
| 最終ジャッジ日時 | 2024-10-01 02:51:52 |
| 合計ジャッジ時間 | 5,687 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 40 |
ソースコード
from collections import defaultdict, Counter
from string import ascii_lowercase
N = int(input())
S = [''.join(sorted(input())) for _ in range(N)]
if N == 1:
print(S[0] + 'z')
exit()
words = []
for c in ascii_lowercase:
for s in S:
words.append(''.join(sorted(s + c)))
for c in ascii_lowercase:
for key, val in Counter(words).items():
if val == 1:
print(key)
exit()
print(-1)