結果
| 問題 | No.2707 Bag of Words Encryption |
| コンテスト | |
| ユーザー |
かもめのうで
|
| 提出日時 | 2024-03-31 13:53:26 |
| 言語 | PyPy3 (7.3.23 + ACL) |
| 結果 |
AC
不安定
|
| 実行時間 | 66 ms / 2,000 ms |
| + 910µs | |
| コード長 | 110 bytes |
| 記録 | |
| コンパイル時間 | 222 ms |
| コンパイル使用メモリ | 95,824 KB |
| 実行使用メモリ | 84,864 KB |
| 最終ジャッジ日時 | 2026-09-06 22:07:24 |
| 合計ジャッジ時間 | 3,077 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 15 |
ソースコード
n = int(input())
s = list(input())
cnt = [0]*26
for i in s:
cnt[ord(i)-ord("A")] += 1
print(*cnt, sep="")
かもめのうで