結果

問題 No.2707 Bag of Words Encryption
ユーザー nyat02nyat02
提出日時 2024-11-01 20:10:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 62 ms / 2,000 ms
コード長 153 bytes
コンパイル時間 290 ms
コンパイル使用メモリ 82,256 KB
実行使用メモリ 65,512 KB
最終ジャッジ日時 2024-11-01 20:10:43
合計ジャッジ時間 2,332 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
63,620 KB
testcase_01 AC 54 ms
64,296 KB
testcase_02 AC 58 ms
65,352 KB
testcase_03 AC 55 ms
65,220 KB
testcase_04 AC 56 ms
64,744 KB
testcase_05 AC 55 ms
63,964 KB
testcase_06 AC 55 ms
64,344 KB
testcase_07 AC 55 ms
64,584 KB
testcase_08 AC 57 ms
65,512 KB
testcase_09 AC 55 ms
65,104 KB
testcase_10 AC 56 ms
64,692 KB
testcase_11 AC 56 ms
64,612 KB
testcase_12 AC 62 ms
64,456 KB
testcase_13 AC 61 ms
64,596 KB
testcase_14 AC 60 ms
64,188 KB
testcase_15 AC 56 ms
64,604 KB
testcase_16 AC 58 ms
64,744 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import string

n = int(input())
s = input()

alphas = string.ascii_uppercase

result = ""

for a in alphas:
    result += str(s.count(a))

print(result)
0