結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
55,048 KB
testcase_01 AC 42 ms
53,352 KB
testcase_02 AC 42 ms
55,040 KB
testcase_03 AC 42 ms
55,236 KB
testcase_04 AC 43 ms
54,344 KB
testcase_05 AC 63 ms
71,640 KB
testcase_06 AC 74 ms
72,620 KB
testcase_07 AC 42 ms
53,544 KB
testcase_08 AC 60 ms
68,532 KB
testcase_09 AC 60 ms
69,508 KB
testcase_10 AC 99 ms
77,228 KB
testcase_11 AC 100 ms
77,200 KB
testcase_12 AC 42 ms
54,664 KB
testcase_13 AC 58 ms
67,796 KB
testcase_14 AC 96 ms
77,080 KB
testcase_15 AC 70 ms
75,920 KB
testcase_16 AC 96 ms
77,068 KB
testcase_17 AC 43 ms
54,180 KB
testcase_18 AC 56 ms
67,492 KB
testcase_19 AC 96 ms
76,908 KB
testcase_20 AC 89 ms
76,780 KB
testcase_21 AC 84 ms
76,708 KB
testcase_22 AC 101 ms
76,864 KB
testcase_23 AC 44 ms
55,004 KB
testcase_24 AC 56 ms
63,240 KB
testcase_25 AC 86 ms
76,372 KB
testcase_26 AC 97 ms
77,132 KB
testcase_27 AC 41 ms
54,180 KB
testcase_28 AC 87 ms
76,884 KB
testcase_29 AC 66 ms
76,068 KB
testcase_30 AC 87 ms
76,916 KB
testcase_31 AC 72 ms
76,224 KB
testcase_32 AC 60 ms
71,012 KB
testcase_33 AC 62 ms
73,636 KB
testcase_34 AC 59 ms
72,000 KB
testcase_35 AC 78 ms
76,724 KB
testcase_36 AC 62 ms
73,836 KB
testcase_37 AC 78 ms
76,316 KB
testcase_38 AC 60 ms
71,044 KB
testcase_39 AC 82 ms
76,880 KB
testcase_40 AC 78 ms
76,428 KB
testcase_41 AC 82 ms
76,520 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