結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
53,376 KB
testcase_01 AC 45 ms
53,120 KB
testcase_02 AC 44 ms
53,376 KB
testcase_03 AC 44 ms
53,888 KB
testcase_04 AC 44 ms
53,504 KB
testcase_05 AC 43 ms
53,760 KB
testcase_06 AC 43 ms
53,504 KB
testcase_07 AC 44 ms
53,376 KB
testcase_08 AC 67 ms
69,248 KB
testcase_09 WA -
testcase_10 AC 68 ms
69,632 KB
testcase_11 AC 68 ms
70,016 KB
testcase_12 AC 68 ms
69,504 KB
testcase_13 AC 70 ms
69,504 KB
testcase_14 AC 64 ms
70,528 KB
testcase_15 AC 66 ms
70,016 KB
testcase_16 AC 67 ms
69,760 KB
testcase_17 AC 68 ms
69,760 KB
testcase_18 AC 71 ms
73,088 KB
testcase_19 AC 72 ms
72,960 KB
testcase_20 AC 70 ms
72,832 KB
testcase_21 AC 70 ms
72,576 KB
testcase_22 AC 69 ms
72,704 KB
testcase_23 AC 69 ms
72,576 KB
testcase_24 AC 72 ms
72,960 KB
testcase_25 AC 72 ms
73,088 KB
testcase_26 AC 70 ms
72,656 KB
testcase_27 AC 73 ms
72,832 KB
testcase_28 AC 64 ms
68,224 KB
testcase_29 AC 67 ms
68,608 KB
testcase_30 AC 65 ms
68,096 KB
testcase_31 AC 65 ms
68,224 KB
testcase_32 AC 65 ms
67,840 KB
testcase_33 AC 44 ms
53,376 KB
testcase_34 AC 43 ms
53,376 KB
testcase_35 AC 44 ms
53,376 KB
testcase_36 AC 43 ms
53,120 KB
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 AC 66 ms
68,864 KB
testcase_42 AC 63 ms
68,864 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