結果
| 問題 | No.2707 Bag of Words Encryption |
| コンテスト | |
| ユーザー |
lam6er
|
| 提出日時 | 2025-03-20 21:06:01 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
AC
|
| 実行時間 | 59 ms / 2,000 ms |
| コード長 | 171 bytes |
| 記録 | |
| コンパイル時間 | 225 ms |
| コンパイル使用メモリ | 96,232 KB |
| 実行使用メモリ | 83,516 KB |
| 最終ジャッジ日時 | 2026-07-07 12:47:44 |
| 合計ジャッジ時間 | 2,960 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 15 |
ソースコード
n = int(input())
s = input().strip()
counts = [0] * 26
for c in s:
index = ord(c) - ord('A')
counts[index] += 1
result = ''.join(map(str, counts))
print(result)
lam6er