結果

問題 No.2715 Unique Chimatagram
ユーザー 👑 p-adicp-adic
提出日時 2024-02-08 10:37:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 133 ms / 2,000 ms
コード長 232 bytes
コンパイル時間 329 ms
コンパイル使用メモリ 82,036 KB
実行使用メモリ 82,036 KB
最終ジャッジ日時 2024-09-28 12:50:33
合計ジャッジ時間 6,056 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
61,920 KB
testcase_01 AC 44 ms
59,348 KB
testcase_02 AC 48 ms
60,760 KB
testcase_03 AC 49 ms
62,520 KB
testcase_04 AC 49 ms
62,412 KB
testcase_05 AC 47 ms
61,408 KB
testcase_06 AC 50 ms
62,732 KB
testcase_07 AC 52 ms
63,008 KB
testcase_08 AC 124 ms
79,964 KB
testcase_09 AC 124 ms
80,460 KB
testcase_10 AC 133 ms
80,844 KB
testcase_11 AC 127 ms
80,788 KB
testcase_12 AC 118 ms
80,516 KB
testcase_13 AC 129 ms
80,828 KB
testcase_14 AC 121 ms
80,116 KB
testcase_15 AC 133 ms
80,856 KB
testcase_16 AC 116 ms
80,200 KB
testcase_17 AC 117 ms
80,516 KB
testcase_18 AC 127 ms
82,036 KB
testcase_19 AC 122 ms
81,544 KB
testcase_20 AC 129 ms
81,516 KB
testcase_21 AC 128 ms
81,496 KB
testcase_22 AC 129 ms
81,520 KB
testcase_23 AC 128 ms
81,740 KB
testcase_24 AC 127 ms
81,604 KB
testcase_25 AC 131 ms
81,396 KB
testcase_26 AC 126 ms
81,836 KB
testcase_27 AC 133 ms
81,548 KB
testcase_28 AC 107 ms
76,812 KB
testcase_29 AC 102 ms
76,876 KB
testcase_30 AC 105 ms
76,892 KB
testcase_31 AC 110 ms
76,780 KB
testcase_32 AC 104 ms
76,812 KB
testcase_33 AC 36 ms
53,272 KB
testcase_34 AC 42 ms
59,736 KB
testcase_35 AC 42 ms
60,680 KB
testcase_36 AC 43 ms
60,552 KB
testcase_37 AC 45 ms
61,716 KB
testcase_38 AC 59 ms
68,504 KB
testcase_39 AC 123 ms
77,064 KB
testcase_40 AC 115 ms
76,996 KB
testcase_41 AC 126 ms
79,580 KB
testcase_42 AC 98 ms
76,608 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

I,R=input,range
D={}
for n in R(int(I())):
	H=[0]*26
	for s in I():H[ord(s)-97]+=1
	for i in R(26):
		S="".join(chr(j+97)*(H[j]+(i==j))for j in R(26))
		if S in D:D[S]+=1
		else:D[S]=1
for S in D:
	if D[S]<2:exit(print(S))
print(-1)
0