結果

問題 No.2073 Concon Substrings (Swap Version)
ユーザー KazunKazun
提出日時 2022-09-16 23:45:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 115 ms / 2,000 ms
コード長 440 bytes
コンパイル時間 551 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 77,184 KB
最終ジャッジ日時 2024-12-21 23:25:37
合計ジャッジ時間 4,914 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
53,504 KB
testcase_01 AC 49 ms
53,504 KB
testcase_02 AC 50 ms
53,504 KB
testcase_03 AC 47 ms
53,376 KB
testcase_04 AC 49 ms
53,632 KB
testcase_05 AC 77 ms
70,272 KB
testcase_06 AC 83 ms
71,296 KB
testcase_07 AC 48 ms
53,504 KB
testcase_08 AC 70 ms
67,072 KB
testcase_09 AC 72 ms
68,608 KB
testcase_10 AC 115 ms
77,056 KB
testcase_11 AC 113 ms
77,056 KB
testcase_12 AC 47 ms
53,248 KB
testcase_13 AC 70 ms
67,200 KB
testcase_14 AC 110 ms
76,800 KB
testcase_15 AC 86 ms
75,776 KB
testcase_16 AC 109 ms
77,056 KB
testcase_17 AC 47 ms
53,248 KB
testcase_18 AC 66 ms
66,560 KB
testcase_19 AC 108 ms
76,928 KB
testcase_20 AC 99 ms
76,416 KB
testcase_21 AC 97 ms
76,544 KB
testcase_22 AC 109 ms
77,184 KB
testcase_23 AC 49 ms
53,760 KB
testcase_24 AC 60 ms
62,848 KB
testcase_25 AC 97 ms
76,672 KB
testcase_26 AC 109 ms
77,184 KB
testcase_27 AC 47 ms
53,376 KB
testcase_28 AC 102 ms
76,416 KB
testcase_29 AC 81 ms
75,904 KB
testcase_30 AC 99 ms
76,800 KB
testcase_31 AC 86 ms
75,904 KB
testcase_32 AC 72 ms
69,120 KB
testcase_33 AC 73 ms
71,680 KB
testcase_34 AC 69 ms
70,528 KB
testcase_35 AC 92 ms
76,416 KB
testcase_36 AC 75 ms
72,832 KB
testcase_37 AC 90 ms
76,544 KB
testcase_38 AC 73 ms
70,016 KB
testcase_39 AC 95 ms
76,416 KB
testcase_40 AC 94 ms
76,544 KB
testcase_41 AC 95 ms
76,672 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict

def solve():
    N=int(input())
    S=input()

    A=[defaultdict(int), defaultdict(int), defaultdict(int)]

    for i in range(3*N):
        if S[i]=="c" or S[i]=="o" or S[i]=="n":
            A[i%3][S[i]]+=1

    ans=0
    p,q,r="con"
    for _ in range(3):
        ans+=min(A[0][p], A[1][q], A[2][r])
        p,q,r=q,r,p

    if ans==N and A[0]["c"]<N:
        ans-=1

    return ans

print(solve())
0