結果

問題 No.2073 Concon Substrings (Swap Version)
ユーザー tassei903tassei903
提出日時 2022-09-19 23:31:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 106 ms / 2,000 ms
コード長 948 bytes
コンパイル時間 294 ms
コンパイル使用メモリ 82,336 KB
実行使用メモリ 76,928 KB
最終ジャッジ日時 2024-12-22 02:54:32
合計ジャッジ時間 4,484 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,968 KB
testcase_01 AC 42 ms
51,840 KB
testcase_02 AC 41 ms
51,840 KB
testcase_03 AC 41 ms
51,840 KB
testcase_04 AC 41 ms
52,392 KB
testcase_05 AC 79 ms
72,320 KB
testcase_06 AC 76 ms
71,680 KB
testcase_07 AC 40 ms
52,096 KB
testcase_08 AC 71 ms
68,224 KB
testcase_09 AC 74 ms
70,528 KB
testcase_10 AC 106 ms
76,672 KB
testcase_11 AC 104 ms
76,928 KB
testcase_12 AC 42 ms
51,968 KB
testcase_13 AC 85 ms
75,548 KB
testcase_14 AC 101 ms
76,364 KB
testcase_15 AC 90 ms
75,520 KB
testcase_16 AC 51 ms
61,696 KB
testcase_17 AC 40 ms
51,968 KB
testcase_18 AC 46 ms
59,008 KB
testcase_19 AC 52 ms
61,952 KB
testcase_20 AC 50 ms
61,184 KB
testcase_21 AC 51 ms
60,672 KB
testcase_22 AC 61 ms
64,256 KB
testcase_23 AC 40 ms
51,840 KB
testcase_24 AC 51 ms
60,544 KB
testcase_25 AC 57 ms
62,336 KB
testcase_26 AC 61 ms
63,856 KB
testcase_27 AC 42 ms
51,712 KB
testcase_28 AC 60 ms
63,232 KB
testcase_29 AC 52 ms
60,800 KB
testcase_30 AC 75 ms
68,992 KB
testcase_31 AC 67 ms
67,584 KB
testcase_32 AC 66 ms
66,816 KB
testcase_33 AC 67 ms
67,072 KB
testcase_34 AC 68 ms
67,072 KB
testcase_35 AC 71 ms
68,224 KB
testcase_36 AC 65 ms
67,456 KB
testcase_37 AC 71 ms
68,480 KB
testcase_38 AC 67 ms
67,072 KB
testcase_39 AC 70 ms
68,480 KB
testcase_40 AC 70 ms
68,224 KB
testcase_41 AC 71 ms
68,608 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda :sys.stdin.readline()[:-1]
ni = lambda :int(input())
na = lambda :list(map(int,input().split()))
yes = lambda :print("yes");Yes = lambda :print("Yes");YES = lambda : print("YES")
no = lambda :print("no");No = lambda :print("No");NO = lambda : print("NO")
#######################################################################


n = ni()
s = input()

a = [0,0,0]
for i in range(n):
    if s[i*3] == "c":
        a[0] += 1
    if s[i*3+1] == "o":
        a[1] += 1
    if s[i*3+2] == "n":
        a[2] += 1
x1 = min(a)
if min(a) == n:
    print(n)
    exit()

a = [0,0,0]
for i in range(n):
    if s[i*3] == "o":
        a[0] += 1
    if s[i*3+1] == "n":
        a[1] += 1
    if s[i*3+2] == "c":
        a[2] += 1
x2 = min(a)


a = [0,0,0]
for i in range(n):
    if s[i*3] == "n":
        a[0] += 1
    if s[i*3+1] == "c":
        a[1] += 1
    if s[i*3+2] == "o":
        a[2] += 1
x3 = min(a)

print(min(x1+x2+x3, n-1))
0