結果

問題 No.2707 Bag of Words Encryption
ユーザー KohkiKohki
提出日時 2024-11-01 19:54:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 49 ms / 2,000 ms
コード長 166 bytes
コンパイル時間 466 ms
コンパイル使用メモリ 82,256 KB
実行使用メモリ 58,760 KB
最終ジャッジ日時 2024-11-01 19:54:03
合計ジャッジ時間 2,591 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,348 KB
testcase_01 AC 37 ms
51,960 KB
testcase_02 AC 44 ms
56,504 KB
testcase_03 AC 38 ms
52,656 KB
testcase_04 AC 43 ms
56,336 KB
testcase_05 AC 41 ms
53,796 KB
testcase_06 AC 44 ms
55,904 KB
testcase_07 AC 46 ms
57,344 KB
testcase_08 AC 49 ms
57,252 KB
testcase_09 AC 48 ms
57,448 KB
testcase_10 AC 47 ms
57,868 KB
testcase_11 AC 46 ms
57,156 KB
testcase_12 AC 48 ms
57,724 KB
testcase_13 AC 46 ms
57,872 KB
testcase_14 AC 47 ms
57,472 KB
testcase_15 AC 46 ms
58,760 KB
testcase_16 AC 46 ms
58,368 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
S = input()
s_li = list(S)
ans = list()
alpha = list("ABCDEFGHIJKLMNOPQRSTUVWXYZ")
for a in alpha:
    ans.append(s_li.count(a))
print(*ans, sep="")
0