結果
| 問題 | No.2707 Bag of Words Encryption | 
| コンテスト | |
| ユーザー |  naut3 | 
| 提出日時 | 2024-03-31 13:33:12 | 
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) | 
| 結果 | 
                                AC
                                 
                             | 
| 実行時間 | 53 ms / 2,000 ms | 
| コード長 | 131 bytes | 
| コンパイル時間 | 433 ms | 
| コンパイル使用メモリ | 12,544 KB | 
| 実行使用メモリ | 11,776 KB | 
| 最終ジャッジ日時 | 2024-09-30 18:01:42 | 
| 合計ジャッジ時間 | 1,806 ms | 
| ジャッジサーバーID (参考情報) | judge1 / judge5 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 2 | 
| other | AC * 15 | 
ソースコード
N = int(input())
S = list(input())
cnt = [0 for _ in range(26)]
for s in S:
    cnt[ord(s) - ord("A")] += 1
print(*cnt, sep="")
            
            
            
        