結果

問題 No.2707 Bag of Words Encryption
ユーザー RYOH2718RYOH2718
提出日時 2024-03-31 13:38:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 76 ms / 2,000 ms
コード長 519 bytes
コンパイル時間 317 ms
コンパイル使用メモリ 81,972 KB
実行使用メモリ 74,624 KB
最終ジャッジ日時 2024-09-30 18:10:46
合計ジャッジ時間 2,163 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 60 ms
63,232 KB
testcase_01 AC 63 ms
63,616 KB
testcase_02 AC 68 ms
71,936 KB
testcase_03 AC 64 ms
65,664 KB
testcase_04 AC 74 ms
72,320 KB
testcase_05 AC 69 ms
67,968 KB
testcase_06 AC 70 ms
70,784 KB
testcase_07 AC 75 ms
73,728 KB
testcase_08 AC 71 ms
72,960 KB
testcase_09 AC 72 ms
74,112 KB
testcase_10 AC 69 ms
73,216 KB
testcase_11 AC 69 ms
73,856 KB
testcase_12 AC 73 ms
74,112 KB
testcase_13 AC 76 ms
74,112 KB
testcase_14 AC 71 ms
74,624 KB
testcase_15 AC 70 ms
74,240 KB
testcase_16 AC 73 ms
74,112 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# 標準入力された値を整数に変換する
def INT():
    return int(input())


# 標準入力された複数の値を整数に変換する
def MI():
    return map(int, input().split())


# 標準入力された複数の値を整数のリストに変換する
def LI():
    return list(map(int, input().split()))


from string import ascii_uppercase
from collections import Counter

N = INT()
S = list(input())
Cs = Counter(S)
ans = []
for s in ascii_uppercase:
    ans.append(str(Cs[s]))

print("".join(ans))
0