結果

問題 No.2021 Not A but B
ユーザー helloprahellopra
提出日時 2022-09-11 14:44:26
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 209 bytes
コンパイル時間 308 ms
コンパイル使用メモリ 82,412 KB
実行使用メモリ 432,968 KB
最終ジャッジ日時 2024-11-28 00:11:40
合計ジャッジ時間 58,723 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
56,576 KB
testcase_01 AC 40 ms
352,604 KB
testcase_02 AC 41 ms
57,088 KB
testcase_03 AC 41 ms
353,312 KB
testcase_04 AC 40 ms
56,576 KB
testcase_05 AC 40 ms
357,212 KB
testcase_06 AC 39 ms
56,576 KB
testcase_07 AC 39 ms
351,420 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 TLE -
testcase_22 AC 815 ms
421,468 KB
testcase_23 AC 817 ms
134,656 KB
testcase_24 AC 95 ms
432,968 KB
testcase_25 AC 845 ms
138,112 KB
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
S = input()
L = list(S)
ans = set()

for i in range(N-1):
    a,b = L[i],L[i+1]
    L = list(S)
    L[i], L[i+1] = "B", "B"
    ans.add("".join(L))
    L[i], L[i+1] = a, b
    
print(len(ans))
0