結果

問題 No.2707 Bag of Words Encryption
ユーザー akiyasumi
提出日時 2024-03-31 13:52:27
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 177 bytes
コンパイル時間 180 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 11,136 KB
最終ジャッジ日時 2024-09-30 18:31:49
合計ジャッジ時間 1,478 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 2
other WA * 15
権限があれば一括ダウンロードができます

ソースコード

diff #

N =int(input())
S =str(input())
AA=""

a_uniquie = ''.join(set(S))
print(a_uniquie)
for i in range(len(a_uniquie)):
    AA=AA+str(S.count(a_uniquie[i]))
print(AA.ljust(23, '0'))
0