結果

問題 No.2707 Bag of Words Encryption
ユーザー KingOsajimaKingOsajima
提出日時 2024-11-01 21:03:10
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 117 ms / 2,000 ms
コード長 1,198 bytes
コンパイル時間 316 ms
コンパイル使用メモリ 12,928 KB
実行使用メモリ 12,140 KB
最終ジャッジ日時 2024-11-01 21:03:13
合計ジャッジ時間 2,869 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,880 KB
testcase_01 AC 31 ms
10,752 KB
testcase_02 AC 86 ms
11,776 KB
testcase_03 AC 42 ms
11,136 KB
testcase_04 AC 89 ms
11,776 KB
testcase_05 AC 56 ms
11,136 KB
testcase_06 AC 76 ms
11,648 KB
testcase_07 AC 98 ms
12,116 KB
testcase_08 AC 93 ms
11,904 KB
testcase_09 AC 117 ms
11,992 KB
testcase_10 AC 93 ms
12,032 KB
testcase_11 AC 98 ms
11,904 KB
testcase_12 AC 103 ms
12,020 KB
testcase_13 AC 99 ms
12,140 KB
testcase_14 AC 100 ms
11,888 KB
testcase_15 AC 100 ms
12,016 KB
testcase_16 AC 99 ms
12,140 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

NX = (int, input())  
SX = list(input())
A = 0
B = 0
C = 0
D = 0
E = 0
F = 0
G = 0
H = 0
I = 0
J = 0
K = 0
L = 0
M = 0
N = 0
O = 0
P = 0
Q = 0
R = 0
S = 0
T = 0
U = 0
V = 0
W = 0
X = 0
Y = 0
Z = 0
SX.sort()
for i in SX:
    if i == "A":
        A += 1
    elif i == "B":
        B += 1
    elif i == "C":
        C += 1
    elif i == "D":
        D += 1
    elif i == "E":
        E += 1
    elif i == "F":
        F += 1
    elif i == "G":
        G += 1
    elif i == "H":
        H += 1
    elif i == "I":
        I += 1
    elif i == "J":
        J += 1
    elif i == "K":
        K += 1
    elif i == "L":
        L += 1
    elif i == "M":
        M += 1
    elif i == "N":
        N += 1
    elif i == "O":
        O += 1
    elif i == "P":
        P += 1
    elif i == "Q":
        Q += 1
    elif i == "R":
        R += 1
    elif i == "S":
        S += 1
    elif i == "T":
        T += 1
    elif i == "U":
        U += 1
    elif i == "V":
        V += 1
    elif i == "W":
        W += 1
    elif i == "X":
        X += 1
    elif i == "Y":
        Y += 1
    else:
        Z += 1
XX = [A,B,C,D,E,F,G,H,I,J,K,L,M,N,O,P,Q,R,S,T,U,V,W,X,Y,Z]
XX_str = map(str, XX)
print("".join(XX_str))

0