結果

問題 No.2707 Bag of Words Encryption
ユーザー miya145592miya145592
提出日時 2024-03-31 13:49:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 59 ms / 2,000 ms
コード長 243 bytes
コンパイル時間 241 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 68,224 KB
最終ジャッジ日時 2024-09-30 18:26:49
合計ジャッジ時間 1,817 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
53,632 KB
testcase_01 AC 45 ms
53,504 KB
testcase_02 AC 55 ms
65,920 KB
testcase_03 AC 49 ms
60,928 KB
testcase_04 AC 54 ms
66,048 KB
testcase_05 AC 50 ms
62,848 KB
testcase_06 AC 53 ms
65,280 KB
testcase_07 AC 56 ms
67,712 KB
testcase_08 AC 58 ms
67,328 KB
testcase_09 AC 56 ms
67,968 KB
testcase_10 AC 56 ms
67,328 KB
testcase_11 AC 56 ms
67,072 KB
testcase_12 AC 54 ms
68,224 KB
testcase_13 AC 59 ms
67,968 KB
testcase_14 AC 57 ms
67,840 KB
testcase_15 AC 57 ms
67,840 KB
testcase_16 AC 57 ms
67,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
import sys
input = sys.stdin.readline
N = int(input())
S = input().strip()
C = defaultdict(int)
for s in S:
    C[s] += 1
ans = ""
for i in range(26):
    c = chr(ord('A')+i)
    ans += str(C[c])
print(ans)
0