結果
| 問題 |
No.2707 Bag of Words Encryption
|
| コンテスト | |
| ユーザー |
Cecil
|
| 提出日時 | 2024-03-31 13:35:21 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
AC
|
| 実行時間 | 48 ms / 2,000 ms |
| コード長 | 242 bytes |
| コンパイル時間 | 264 ms |
| コンパイル使用メモリ | 12,544 KB |
| 実行使用メモリ | 11,904 KB |
| 最終ジャッジ日時 | 2024-09-30 18:06:51 |
| 合計ジャッジ時間 | 1,727 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 15 |
ソースコード
from collections import defaultdict as dd
N = int(input())
S = list(input())
cnt = dd(int)
for i in range(N):
cnt[S[i]] += 1
alp = [chr(65+i) for i in range(26)]
#print(ord("A"))
ans = ""
for i in alp:
ans += str(cnt[i])
print(ans)
Cecil