結果

問題 No.2021 Not A but B
ユーザー helloprahellopra
提出日時 2022-09-03 19:31:01
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 191 bytes
コンパイル時間 400 ms
コンパイル使用メモリ 82,036 KB
実行使用メモリ 377,208 KB
最終ジャッジ日時 2024-11-17 10:27:06
合計ジャッジ時間 55,778 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
56,320 KB
testcase_01 AC 41 ms
304,764 KB
testcase_02 AC 41 ms
56,448 KB
testcase_03 AC 39 ms
304,420 KB
testcase_04 AC 40 ms
56,576 KB
testcase_05 AC 39 ms
304,288 KB
testcase_06 AC 38 ms
56,704 KB
testcase_07 AC 39 ms
304,056 KB
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 AC 1,354 ms
147,072 KB
testcase_22 AC 447 ms
337,548 KB
testcase_23 AC 431 ms
89,600 KB
testcase_24 AC 72 ms
377,208 KB
testcase_25 AC 452 ms
89,984 KB
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
権限があれば一括ダウンロードができます

ソースコード

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("".join(S))
    S[i],S[i+1] = a,b

print(len(ans_set))
0