結果

問題 No.2021 Not A but B
ユーザー かいかいかいかい
提出日時 2022-10-02 19:33:10
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
MLE  
実行時間 -
コード長 192 bytes
コンパイル時間 234 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 821,696 KB
最終ジャッジ日時 2024-12-25 16:22:01
合計ジャッジ時間 25,411 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,496 KB
testcase_01 AC 28 ms
10,496 KB
testcase_02 AC 27 ms
10,624 KB
testcase_03 AC 27 ms
10,496 KB
testcase_04 AC 30 ms
10,624 KB
testcase_05 AC 27 ms
10,496 KB
testcase_06 AC 27 ms
10,496 KB
testcase_07 AC 28 ms
10,496 KB
testcase_08 MLE -
testcase_09 MLE -
testcase_10 MLE -
testcase_11 MLE -
testcase_12 MLE -
testcase_13 MLE -
testcase_14 MLE -
testcase_15 MLE -
testcase_16 MLE -
testcase_17 MLE -
testcase_18 MLE -
testcase_19 MLE -
testcase_20 MLE -
testcase_21 AC 213 ms
125,056 KB
testcase_22 AC 84 ms
44,928 KB
testcase_23 AC 85 ms
44,672 KB
testcase_24 AC 34 ms
12,544 KB
testcase_25 AC 76 ms
46,464 KB
testcase_26 MLE -
testcase_27 MLE -
testcase_28 MLE -
testcase_29 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
S = input()

A = []

for i in range(N-1):
    if i == N - 2:
        A.append(S[:i] + 'BB')
    else:
        A.append(S[:i] + 'BB' + S[i+2:])

K = set(A)
Y = len(K)
print(Y)
0