結果

問題 No.2715 Unique Chimatagram
ユーザー dp_ijkdp_ijk
提出日時 2024-04-05 21:38:31
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 442 bytes
コンパイル時間 335 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 77,056 KB
最終ジャッジ日時 2024-10-01 01:52:50
合計ジャッジ時間 5,413 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,248 KB
testcase_01 AC 39 ms
53,376 KB
testcase_02 AC 39 ms
53,632 KB
testcase_03 AC 41 ms
53,376 KB
testcase_04 AC 41 ms
53,760 KB
testcase_05 AC 42 ms
53,760 KB
testcase_06 AC 40 ms
53,504 KB
testcase_07 AC 39 ms
53,248 KB
testcase_08 AC 76 ms
73,600 KB
testcase_09 AC 76 ms
73,088 KB
testcase_10 AC 84 ms
76,928 KB
testcase_11 AC 85 ms
77,056 KB
testcase_12 AC 79 ms
73,088 KB
testcase_13 AC 87 ms
77,056 KB
testcase_14 AC 75 ms
73,088 KB
testcase_15 AC 87 ms
76,672 KB
testcase_16 AC 87 ms
76,928 KB
testcase_17 AC 86 ms
76,672 KB
testcase_18 AC 74 ms
73,600 KB
testcase_19 AC 73 ms
73,600 KB
testcase_20 AC 77 ms
74,240 KB
testcase_21 AC 76 ms
73,600 KB
testcase_22 AC 73 ms
73,856 KB
testcase_23 AC 73 ms
73,600 KB
testcase_24 AC 74 ms
73,472 KB
testcase_25 AC 76 ms
74,880 KB
testcase_26 AC 75 ms
73,856 KB
testcase_27 AC 76 ms
73,472 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 43 ms
53,632 KB
testcase_34 AC 39 ms
53,504 KB
testcase_35 AC 39 ms
53,632 KB
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 AC 54 ms
64,384 KB
testcase_40 WA -
testcase_41 AC 77 ms
71,168 KB
testcase_42 AC 67 ms
68,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
S = []
for _ in range(N):
   s = input()
   s = "".join(sorted(s))
   S.append(s)

from collections import Counter

C = Counter()
for s in S:
   for i in range(len(s)):
      u = s[:i] + s[i+1:]
      C[u] += 1

for u, cnt in C.items():
   if cnt == 1:
      break
else:
   print(-1)
   exit()

target = u

for s in S:
   for i in range(len(s)):
      u = s[:i] + s[i+1:]
      if u == target:
         break

print(s + "x")
0