結果

問題 No.2707 Bag of Words Encryption
ユーザー KeeKee
提出日時 2024-03-31 22:25:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 68 ms / 2,000 ms
コード長 1,105 bytes
コンパイル時間 257 ms
コンパイル使用メモリ 81,700 KB
実行使用メモリ 65,716 KB
最終ジャッジ日時 2024-03-31 22:25:54
合計ジャッジ時間 1,928 ms
ジャッジサーバーID
(参考情報)
judge13 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
55,736 KB
testcase_01 AC 45 ms
55,736 KB
testcase_02 AC 50 ms
63,668 KB
testcase_03 AC 49 ms
61,552 KB
testcase_04 AC 50 ms
63,668 KB
testcase_05 AC 50 ms
61,552 KB
testcase_06 AC 51 ms
63,668 KB
testcase_07 AC 50 ms
63,668 KB
testcase_08 AC 51 ms
63,668 KB
testcase_09 AC 50 ms
63,668 KB
testcase_10 AC 48 ms
63,668 KB
testcase_11 AC 49 ms
63,668 KB
testcase_12 AC 68 ms
65,716 KB
testcase_13 AC 49 ms
65,716 KB
testcase_14 AC 49 ms
65,716 KB
testcase_15 AC 50 ms
65,716 KB
testcase_16 AC 51 ms
65,716 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/python3

import bisect
import collections
import heapq
import itertools
import math
import os
import sys


def main():
    n = read_int()
    S = inp()

    A = [0] * 26
    for ch in S:
        A[ord(ch) - ord('A')] += 1

    ans = []
    for a in A:
        ans.append(str(a))
    print(''.join(ans))


###############################################################################

DEBUG = 'DEBUG' in os.environ


def inp():
    return sys.stdin.readline().rstrip()


def read_int():
    return int(inp())


def read_ints():
    return [int(e) for e in inp().split()]


def list2d(d1, d2, init=None):
    return [[init] * d2 for _ in range(d1)]


def list3d(d1, d2, d3, init=None):
    return [[[init] * d3 for _ in range(d2)] for _ in range(d1)]


def list4d(d1, d2, d3, d4, init=None):
    return [[[[init] * d4 for _ in range(d3)] for _ in range(d2)]
            for _ in range(d1)]


def debug(fmt, *args):
    if DEBUG:
        if args:
            print(fmt.format(*args), file=sys.stderr)
        else:
            print(fmt, file=sys.stderr)


if __name__ == '__main__':
    main()
0