結果

問題 No.2715 Unique Chimatagram
ユーザー ButterflvButterflv
提出日時 2024-05-07 12:19:50
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 692 bytes
コンパイル時間 254 ms
コンパイル使用メモリ 82,016 KB
実行使用メモリ 74,520 KB
最終ジャッジ日時 2024-05-07 12:19:57
合計ジャッジ時間 5,089 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
55,232 KB
testcase_01 AC 39 ms
54,156 KB
testcase_02 AC 38 ms
54,528 KB
testcase_03 AC 39 ms
54,864 KB
testcase_04 AC 39 ms
55,048 KB
testcase_05 AC 38 ms
55,140 KB
testcase_06 AC 42 ms
55,008 KB
testcase_07 AC 39 ms
54,128 KB
testcase_08 AC 59 ms
70,856 KB
testcase_09 WA -
testcase_10 AC 58 ms
71,240 KB
testcase_11 AC 57 ms
71,040 KB
testcase_12 AC 58 ms
71,416 KB
testcase_13 AC 63 ms
70,056 KB
testcase_14 AC 56 ms
70,932 KB
testcase_15 AC 57 ms
70,056 KB
testcase_16 AC 70 ms
70,320 KB
testcase_17 AC 59 ms
71,572 KB
testcase_18 AC 62 ms
73,996 KB
testcase_19 AC 62 ms
73,332 KB
testcase_20 AC 62 ms
72,956 KB
testcase_21 AC 62 ms
73,792 KB
testcase_22 AC 65 ms
73,996 KB
testcase_23 AC 65 ms
73,632 KB
testcase_24 AC 63 ms
73,504 KB
testcase_25 AC 61 ms
73,296 KB
testcase_26 AC 60 ms
73,424 KB
testcase_27 AC 63 ms
74,520 KB
testcase_28 AC 57 ms
68,976 KB
testcase_29 AC 57 ms
68,744 KB
testcase_30 AC 55 ms
68,428 KB
testcase_31 AC 58 ms
70,076 KB
testcase_32 AC 65 ms
69,672 KB
testcase_33 AC 38 ms
53,552 KB
testcase_34 AC 39 ms
54,020 KB
testcase_35 AC 39 ms
54,508 KB
testcase_36 AC 37 ms
54,076 KB
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 AC 60 ms
69,152 KB
testcase_42 AC 55 ms
70,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())

S=[]
for i in range(N):
  s=input(); res=[]
  for j in range(len(s)):
    res.append(s[j])
  S.append(tuple(sorted(res)))

from collections import defaultdict
dd=defaultdict(lambda: 0)
for elm in S:
  dd[elm]+=1

new_s=set()
for key in dd:
  if dd[key]!=1: continue
  new_s.add(key)

S=new_s

if len(S)==0: print(-1)

for tup1 in S:
  flag=True
  for tup2 in S:
    if tup1==tup2: continue
    if len(tup1)!=len(tup2): continue
    diff=0
    j=0
    for i in range(len(tup1)):
      if j>len(tup2): continue
      if tup1[i]!=tup2[j]: diff+=1; j+=1
    if diff<=1:
      flag=False
  if flag:
    ans=list(tup1)
    ans.append("a")
    print("".join(sorted(ans)))
    exit()
0