結果

問題 No.2707 Bag of Words Encryption
ユーザー pyt-314pyt-314
提出日時 2024-03-31 13:43:01
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 50 ms / 2,000 ms
コード長 180 bytes
コンパイル時間 226 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 11,008 KB
最終ジャッジ日時 2024-09-30 18:16:35
合計ジャッジ時間 1,494 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 15
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
s = input()
count = dict()
for i in range(26):
    count[i] = 0
for i in s:
    count[ord(i) - 65] += 1
out = [str(o) for o in count.values()]
print("".join(out))
0