結果

問題 No.2073 Concon Substrings (Swap Version)
ユーザー ntudantuda
提出日時 2022-09-18 19:10:45
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 290 bytes
コンパイル時間 107 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 16,196 KB
最終ジャッジ日時 2024-06-01 15:41:43
合計ジャッジ時間 6,640 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 30 ms
10,624 KB
testcase_03 AC 29 ms
10,752 KB
testcase_04 AC 31 ms
10,624 KB
testcase_05 AC 187 ms
16,032 KB
testcase_06 AC 181 ms
15,964 KB
testcase_07 AC 29 ms
10,752 KB
testcase_08 AC 124 ms
14,012 KB
testcase_09 AC 143 ms
15,060 KB
testcase_10 AC 251 ms
16,036 KB
testcase_11 AC 253 ms
16,020 KB
testcase_12 AC 29 ms
10,880 KB
testcase_13 AC 50 ms
11,392 KB
testcase_14 AC 210 ms
15,164 KB
testcase_15 AC 92 ms
12,416 KB
testcase_16 AC 271 ms
15,964 KB
testcase_17 AC 30 ms
10,624 KB
testcase_18 AC 53 ms
11,264 KB
testcase_19 AC 262 ms
15,712 KB
testcase_20 AC 197 ms
14,436 KB
testcase_21 AC 177 ms
13,804 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
S = input()
X = [[0] * 3 for _ in range(3)]
for i, c in enumerate(list(S)):
    if c == "c":
        X[i % 3][0] += 1
    if c == "o":
        X[(i - 1) % 3][1] += 1
    if c == "n":
        X[(i - 2) % 3][2] += 1
ans = 0
for i in range(3):
    ans += min(X[i])
print(ans)
0