結果

問題 No.2715 Unique Chimatagram
ユーザー dp_ijkdp_ijk
提出日時 2024-04-05 21:50:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 143 ms / 2,000 ms
コード長 722 bytes
コンパイル時間 233 ms
コンパイル使用メモリ 82,500 KB
実行使用メモリ 82,276 KB
最終ジャッジ日時 2024-10-01 02:06:28
合計ジャッジ時間 5,525 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
55,264 KB
testcase_01 AC 42 ms
54,920 KB
testcase_02 AC 41 ms
54,944 KB
testcase_03 AC 42 ms
54,860 KB
testcase_04 AC 42 ms
55,112 KB
testcase_05 AC 47 ms
55,840 KB
testcase_06 AC 45 ms
55,408 KB
testcase_07 AC 45 ms
54,908 KB
testcase_08 AC 106 ms
80,440 KB
testcase_09 AC 109 ms
80,420 KB
testcase_10 AC 108 ms
80,396 KB
testcase_11 AC 103 ms
81,128 KB
testcase_12 AC 99 ms
80,688 KB
testcase_13 AC 101 ms
80,496 KB
testcase_14 AC 106 ms
80,404 KB
testcase_15 AC 99 ms
80,452 KB
testcase_16 AC 102 ms
80,268 KB
testcase_17 AC 101 ms
80,640 KB
testcase_18 AC 99 ms
81,976 KB
testcase_19 AC 98 ms
81,840 KB
testcase_20 AC 98 ms
82,032 KB
testcase_21 AC 95 ms
81,764 KB
testcase_22 AC 95 ms
81,852 KB
testcase_23 AC 98 ms
81,792 KB
testcase_24 AC 97 ms
81,844 KB
testcase_25 AC 100 ms
82,276 KB
testcase_26 AC 100 ms
81,860 KB
testcase_27 AC 99 ms
82,036 KB
testcase_28 AC 111 ms
77,416 KB
testcase_29 AC 106 ms
76,796 KB
testcase_30 AC 115 ms
77,420 KB
testcase_31 AC 96 ms
77,364 KB
testcase_32 AC 120 ms
77,320 KB
testcase_33 AC 41 ms
55,116 KB
testcase_34 AC 44 ms
54,116 KB
testcase_35 AC 41 ms
54,852 KB
testcase_36 AC 40 ms
55,456 KB
testcase_37 AC 42 ms
54,304 KB
testcase_38 AC 52 ms
64,936 KB
testcase_39 AC 119 ms
77,244 KB
testcase_40 AC 102 ms
76,820 KB
testcase_41 AC 143 ms
79,524 KB
testcase_42 AC 120 ms
77,776 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter
from bisect import bisect_left, bisect_right, insort


def ch_gen(start="a", stop="z"):
   for i in range(ord(start), ord(stop) + 1):
      yield chr(i)


ABC = [*ch_gen()]

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

C = Counter()
for s in S:
   for ch in ABC:
      insort(s, ch)
      u = "".join(s)
      C[u] += 1
      s.remove(ch)

for s in S:
   pool = []
   for ch in ABC:
      insort(s, ch)
      u = "".join(s)
      pool.append(u)
      s.remove(ch)
   for u in pool:
      C[u] -= 1
      if C[u] == 0:
         del C[u]
   for u in pool:
      if C[u] == 0:
         print(u)
         exit()
   for u in pool:
      C[u] += 1

print(-1)
0