結果

問題 No.2715 Unique Chimatagram
ユーザー なえしらなえしら
提出日時 2024-06-15 00:16:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 102 ms / 2,000 ms
コード長 282 bytes
コンパイル時間 637 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 84,992 KB
最終ジャッジ日時 2024-06-15 00:16:48
合計ジャッジ時間 6,661 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
63,488 KB
testcase_01 AC 52 ms
63,872 KB
testcase_02 AC 55 ms
63,744 KB
testcase_03 AC 55 ms
63,744 KB
testcase_04 AC 54 ms
63,744 KB
testcase_05 AC 55 ms
63,872 KB
testcase_06 AC 57 ms
63,872 KB
testcase_07 AC 54 ms
63,744 KB
testcase_08 AC 90 ms
81,536 KB
testcase_09 AC 90 ms
81,520 KB
testcase_10 AC 90 ms
81,664 KB
testcase_11 AC 102 ms
82,048 KB
testcase_12 AC 87 ms
81,608 KB
testcase_13 AC 89 ms
81,408 KB
testcase_14 AC 86 ms
81,920 KB
testcase_15 AC 87 ms
81,536 KB
testcase_16 AC 86 ms
81,920 KB
testcase_17 AC 89 ms
81,536 KB
testcase_18 AC 101 ms
84,736 KB
testcase_19 AC 96 ms
84,608 KB
testcase_20 AC 98 ms
84,480 KB
testcase_21 AC 100 ms
84,736 KB
testcase_22 AC 98 ms
84,864 KB
testcase_23 AC 100 ms
84,480 KB
testcase_24 AC 98 ms
84,992 KB
testcase_25 AC 98 ms
84,608 KB
testcase_26 AC 99 ms
84,800 KB
testcase_27 AC 97 ms
84,864 KB
testcase_28 AC 88 ms
77,684 KB
testcase_29 AC 84 ms
77,824 KB
testcase_30 AC 83 ms
77,824 KB
testcase_31 AC 87 ms
77,696 KB
testcase_32 AC 102 ms
77,952 KB
testcase_33 AC 53 ms
64,000 KB
testcase_34 AC 53 ms
63,488 KB
testcase_35 AC 54 ms
63,360 KB
testcase_36 AC 54 ms
63,744 KB
testcase_37 AC 55 ms
63,488 KB
testcase_38 AC 67 ms
71,040 KB
testcase_39 AC 81 ms
78,080 KB
testcase_40 AC 79 ms
77,824 KB
testcase_41 AC 90 ms
79,444 KB
testcase_42 AC 88 ms
77,440 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter
from string import ascii_lowercase

cnt = Counter()
for _ in range(int(input())):
  S = input()
  for c in ascii_lowercase:
    T = "".join(sorted(S + c))
    cnt[T] += 1

for T, n in cnt.items():
  if n == 1:
    print(T)
    break
else:
  print(-1)
0