結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
15,872 KB
testcase_01 AC 30 ms
10,496 KB
testcase_02 AC 30 ms
10,496 KB
testcase_03 AC 31 ms
10,624 KB
testcase_04 AC 28 ms
10,624 KB
testcase_05 AC 28 ms
10,624 KB
testcase_06 AC 31 ms
10,624 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 161 ms
82,304 KB
testcase_22 AC 72 ms
33,152 KB
testcase_23 AC 71 ms
31,872 KB
testcase_24 AC 34 ms
12,032 KB
testcase_25 AC 64 ms
33,152 KB
testcase_26 TLE -
testcase_27 MLE -
testcase_28 MLE -
testcase_29 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

A = set()

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

Y = len(A)
print(Y)
0