結果

問題 No.2073 Concon Substrings (Swap Version)
ユーザー shotoyooshotoyoo
提出日時 2022-09-16 21:46:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 115 ms / 2,000 ms
コード長 1,102 bytes
コンパイル時間 332 ms
コンパイル使用メモリ 82,400 KB
実行使用メモリ 122,668 KB
最終ジャッジ日時 2024-12-21 18:56:44
合計ジャッジ時間 4,741 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
57,184 KB
testcase_01 AC 42 ms
56,768 KB
testcase_02 AC 44 ms
56,360 KB
testcase_03 AC 42 ms
56,336 KB
testcase_04 AC 44 ms
56,560 KB
testcase_05 AC 115 ms
122,576 KB
testcase_06 AC 114 ms
122,668 KB
testcase_07 AC 43 ms
56,892 KB
testcase_08 AC 89 ms
103,708 KB
testcase_09 AC 102 ms
111,832 KB
testcase_10 AC 110 ms
122,524 KB
testcase_11 AC 114 ms
122,344 KB
testcase_12 AC 42 ms
57,312 KB
testcase_13 AC 53 ms
71,292 KB
testcase_14 AC 108 ms
116,772 KB
testcase_15 AC 70 ms
88,484 KB
testcase_16 AC 110 ms
122,412 KB
testcase_17 AC 44 ms
56,664 KB
testcase_18 AC 53 ms
72,016 KB
testcase_19 AC 111 ms
122,192 KB
testcase_20 AC 98 ms
107,932 KB
testcase_21 AC 88 ms
103,328 KB
testcase_22 AC 112 ms
122,488 KB
testcase_23 AC 43 ms
56,184 KB
testcase_24 AC 47 ms
64,612 KB
testcase_25 AC 88 ms
103,876 KB
testcase_26 AC 108 ms
122,364 KB
testcase_27 AC 41 ms
55,756 KB
testcase_28 AC 99 ms
112,516 KB
testcase_29 AC 64 ms
84,348 KB
testcase_30 AC 87 ms
107,072 KB
testcase_31 AC 70 ms
89,044 KB
testcase_32 AC 54 ms
74,212 KB
testcase_33 AC 57 ms
79,344 KB
testcase_34 AC 56 ms
77,160 KB
testcase_35 AC 79 ms
97,740 KB
testcase_36 AC 63 ms
80,576 KB
testcase_37 AC 87 ms
97,720 KB
testcase_38 AC 59 ms
77,124 KB
testcase_39 AC 89 ms
100,588 KB
testcase_40 AC 87 ms
97,776 KB
testcase_41 AC 88 ms
100,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys, random
input = lambda : sys.stdin.readline().rstrip()


write = lambda x: sys.stdout.write(x+"\n"); writef = lambda x: print("{:.12f}".format(x))
debug = lambda x: sys.stderr.write(x+"\n")
YES="Yes"; NO="No"; pans = lambda v: print(YES if v else NO); INF=10**18
LI = lambda : list(map(int, input().split())); II=lambda : int(input()); SI=lambda : [ord(c)-ord("a") for c in input()]
def debug(_l_):
    for s in _l_.split():
        print(f"{s}={eval(s)}", end=" ")
    print()
def dlist(*l, fill=0):
    if len(l)==1:
        return [fill]*l[0]
    ll = l[1:]
    return [dlist(*ll, fill=fill) for _ in range(l[0])]

n = int(input())
s = SI()
l = [[],[],[]]
for i in range(3*n):
    l[i%3].append(s[i])
from collections import Counter
C = ord("c")-ord("a")
O = ord("o")-ord("a")
N = ord("n")-ord("a")
cs = [Counter(item) for item in l]
ans = 0
val = min(cs[0][C], cs[1][O], cs[2][N])
val2 = min(cs[1][C], cs[2][O], cs[0][N])
if val2==n:
    val2 = n-1
val3 = min(cs[2][C], cs[0][O], cs[1][N])
if val3==n:
    val3 = n-1
ans = val + val2 + val3
if ans==n and val!=n:
    ans = n-1
print(ans)
0