結果
| 問題 | No.2707 Bag of Words Encryption |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2024-03-31 13:34:15 |
| 言語 | PyPy3 (7.3.23 + ACL) |
| 結果 |
AC
不安定
|
| 実行時間 | 89 ms / 2,000 ms |
| + 336µs | |
| コード長 | 136 bytes |
| 記録 | |
| コンパイル時間 | 234 ms |
| コンパイル使用メモリ | 95,948 KB |
| 実行使用メモリ | 88,576 KB |
| 最終ジャッジ日時 | 2026-09-06 21:45:56 |
| 合計ジャッジ時間 | 3,693 ms |
|
ジャッジサーバーID (参考情報) |
judge3_1 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 15 |
ソースコード
n=int(input())
x=input()
from collections import Counter
c=Counter(list(x))
print("".join([str(c[chr(ord("A")+i)])for i in range(26)]))