結果

問題 No.2715 Unique Chimatagram
ユーザー aa
提出日時 2024-04-05 21:42:31
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 375 bytes
コンパイル時間 322 ms
コンパイル使用メモリ 82,100 KB
実行使用メモリ 76,796 KB
最終ジャッジ日時 2024-10-01 01:56:39
合計ジャッジ時間 7,934 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,840 KB
testcase_01 AC 38 ms
52,224 KB
testcase_02 AC 38 ms
51,968 KB
testcase_03 WA -
testcase_04 AC 42 ms
51,968 KB
testcase_05 AC 41 ms
51,968 KB
testcase_06 AC 40 ms
52,352 KB
testcase_07 AC 37 ms
52,096 KB
testcase_08 WA -
testcase_09 AC 131 ms
76,416 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 65 ms
67,712 KB
testcase_19 AC 64 ms
67,584 KB
testcase_20 AC 64 ms
67,968 KB
testcase_21 AC 64 ms
67,968 KB
testcase_22 AC 66 ms
67,456 KB
testcase_23 AC 64 ms
67,840 KB
testcase_24 AC 63 ms
67,712 KB
testcase_25 AC 64 ms
68,096 KB
testcase_26 AC 66 ms
68,352 KB
testcase_27 AC 62 ms
67,712 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 38 ms
52,352 KB
testcase_34 AC 37 ms
52,224 KB
testcase_35 AC 37 ms
52,404 KB
testcase_36 AC 37 ms
52,096 KB
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 AC 148 ms
76,468 KB
testcase_42 AC 416 ms
75,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
s=[input() for _ in range(n)]
t=[[0 for _ in range(26)]for _ in range(n)]
for i in range(n):
	for j in range(26):
		t[i][j]=s[i].count(chr(ord('a')+j))
for i in range(n):
	T=True
	for j in range(n):
		if i!=j:
			L=False
			for k in range(26):
				if t[i][k]<t[j][k]:
					L=True
					break 
			if not L:
				T=False
	if T:
		print(s[i]+'a')
		exit()
print(-1)
0