結果

問題 No.2021 Not A but B
ユーザー helloprahellopra
提出日時 2022-09-03 19:28:18
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 189 bytes
コンパイル時間 369 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 967,120 KB
最終ジャッジ日時 2024-11-17 10:23:53
合計ジャッジ時間 71,444 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
56,832 KB
testcase_01 MLE -
testcase_02 AC 39 ms
58,660 KB
testcase_03 MLE -
testcase_04 MLE -
testcase_05 MLE -
testcase_06 AC 42 ms
58,532 KB
testcase_07 MLE -
testcase_08 MLE -
testcase_09 MLE -
testcase_10 TLE -
testcase_11 MLE -
testcase_12 MLE -
testcase_13 MLE -
testcase_14 MLE -
testcase_15 MLE -
testcase_16 TLE -
testcase_17 MLE -
testcase_18 MLE -
testcase_19 MLE -
testcase_20 MLE -
testcase_21 MLE -
testcase_22 MLE -
testcase_23 TLE -
testcase_24 MLE -
testcase_25 MLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
S = list(input())
ans_set = set()

for i in range(N-1):
    a,b = S[i],S[i+1]
    S[i],S[i+1] = "B","B"
    ans_set.add(tuple(S))
    S[i],S[i+1] = a,b

print(len(ans_set))
0