結果

問題 No.2073 Concon Substrings (Swap Version)
ユーザー Akijin_007Akijin_007
提出日時 2022-09-16 22:25:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 80 ms / 2,000 ms
コード長 556 bytes
コンパイル時間 175 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 68,496 KB
最終ジャッジ日時 2024-06-01 13:30:45
合計ジャッジ時間 3,965 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,884 KB
testcase_01 AC 38 ms
53,688 KB
testcase_02 AC 38 ms
53,072 KB
testcase_03 AC 38 ms
52,252 KB
testcase_04 AC 38 ms
53,216 KB
testcase_05 AC 65 ms
65,240 KB
testcase_06 AC 65 ms
66,268 KB
testcase_07 AC 38 ms
52,924 KB
testcase_08 AC 62 ms
64,796 KB
testcase_09 AC 62 ms
65,216 KB
testcase_10 AC 80 ms
68,496 KB
testcase_11 AC 78 ms
67,760 KB
testcase_12 AC 39 ms
53,336 KB
testcase_13 AC 56 ms
65,720 KB
testcase_14 AC 74 ms
66,136 KB
testcase_15 AC 61 ms
65,008 KB
testcase_16 AC 71 ms
67,036 KB
testcase_17 AC 37 ms
52,752 KB
testcase_18 AC 51 ms
63,712 KB
testcase_19 AC 69 ms
66,648 KB
testcase_20 AC 64 ms
65,248 KB
testcase_21 AC 61 ms
65,800 KB
testcase_22 AC 69 ms
65,856 KB
testcase_23 AC 38 ms
53,192 KB
testcase_24 AC 51 ms
62,436 KB
testcase_25 AC 63 ms
65,952 KB
testcase_26 AC 71 ms
66,844 KB
testcase_27 AC 38 ms
53,584 KB
testcase_28 AC 66 ms
66,544 KB
testcase_29 AC 53 ms
64,276 KB
testcase_30 AC 62 ms
66,100 KB
testcase_31 AC 55 ms
64,696 KB
testcase_32 AC 53 ms
64,204 KB
testcase_33 AC 53 ms
64,220 KB
testcase_34 AC 58 ms
65,656 KB
testcase_35 AC 64 ms
67,256 KB
testcase_36 AC 59 ms
65,960 KB
testcase_37 AC 63 ms
67,020 KB
testcase_38 AC 56 ms
65,368 KB
testcase_39 AC 66 ms
66,476 KB
testcase_40 AC 65 ms
66,260 KB
testcase_41 AC 65 ms
66,724 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#int(input())
#map(int, input().split())
#list(map(int, input().split()))

N = int(input())
S = input()
m = 3 * N

a = ("c", "o", "n")
c = [[0] * 3 for i in range(3)]

for i in range(m):
    if S[i] in a:
        t = a.index(S[i])
        c[i%3][t] += 1

# for i in range(3):
#     print(c[i])

ans = 0
u = []
for i in range(3):
    b = 1000000
    for j in range(3):
        b = min(c[(i+j)%3][j], b)
        # print((i+j)%3, j)
    u.append(b)

if sum(u) == N:
    if u[0] == N:
        print(u[0])
    else:
        print(N-1)
else:
    print(sum(u))


0