結果

問題 No.2707 Bag of Words Encryption
ユーザー miho-4miho-4
提出日時 2024-08-09 17:44:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 51 ms / 2,000 ms
コード長 186 bytes
コンパイル時間 591 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 66,560 KB
最終ジャッジ日時 2024-08-09 17:44:04
合計ジャッジ時間 2,314 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,156 KB
testcase_01 AC 36 ms
51,584 KB
testcase_02 AC 48 ms
64,384 KB
testcase_03 AC 42 ms
59,136 KB
testcase_04 AC 48 ms
64,512 KB
testcase_05 AC 43 ms
60,800 KB
testcase_06 AC 46 ms
63,616 KB
testcase_07 AC 49 ms
65,920 KB
testcase_08 AC 50 ms
65,152 KB
testcase_09 AC 48 ms
66,048 KB
testcase_10 AC 51 ms
65,280 KB
testcase_11 AC 49 ms
65,280 KB
testcase_12 AC 50 ms
66,048 KB
testcase_13 AC 50 ms
66,432 KB
testcase_14 AC 49 ms
66,560 KB
testcase_15 AC 48 ms
66,304 KB
testcase_16 AC 50 ms
66,176 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=input()
s=input()
d=dict()
for e in s:
	if e not in d:
		d[e]=1
	else:
		d[e]+=1
ans=""
for i in range(26):
	x=chr(ord("A")+i)
	if x in d:
		ans+=str(d[x])
	else:
		ans+="0"
print(ans)
0