結果

問題 No.2707 Bag of Words Encryption
ユーザー Ekiben542Ekiben542
提出日時 2024-03-31 13:38:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 41 ms / 2,000 ms
コード長 218 bytes
コンパイル時間 152 ms
コンパイル使用メモリ 81,700 KB
実行使用メモリ 61,444 KB
最終ジャッジ日時 2024-03-31 13:38:43
合計ジャッジ時間 1,463 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,460 KB
testcase_01 AC 36 ms
53,460 KB
testcase_02 AC 40 ms
61,444 KB
testcase_03 AC 38 ms
59,392 KB
testcase_04 AC 40 ms
61,444 KB
testcase_05 AC 38 ms
59,384 KB
testcase_06 AC 40 ms
61,444 KB
testcase_07 AC 40 ms
61,444 KB
testcase_08 AC 39 ms
61,444 KB
testcase_09 AC 41 ms
61,444 KB
testcase_10 AC 41 ms
61,444 KB
testcase_11 AC 40 ms
61,444 KB
testcase_12 AC 39 ms
61,444 KB
testcase_13 AC 39 ms
61,444 KB
testcase_14 AC 39 ms
61,444 KB
testcase_15 AC 39 ms
61,444 KB
testcase_16 AC 39 ms
61,444 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve(N, S):
    counts = [0]*26
    for c in S:
        counts[ord(c) - ord('A')] += 1
    X = ''
    for i in range(26):
        X += str(counts[i])
    return X
N = int(input())
S = input()
print(solve(N, S))  
0