結果

問題 No.2073 Concon Substrings (Swap Version)
ユーザー 👑 KazunKazun
提出日時 2022-09-16 23:06:45
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 506 bytes
コンパイル時間 294 ms
コンパイル使用メモリ 82,340 KB
実行使用メモリ 77,360 KB
最終ジャッジ日時 2024-06-01 13:59:43
合計ジャッジ時間 4,609 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
53,968 KB
testcase_01 AC 44 ms
55,360 KB
testcase_02 AC 42 ms
54,004 KB
testcase_03 AC 42 ms
53,732 KB
testcase_04 AC 43 ms
54,056 KB
testcase_05 AC 86 ms
77,256 KB
testcase_06 AC 92 ms
77,128 KB
testcase_07 AC 43 ms
55,188 KB
testcase_08 AC 71 ms
73,336 KB
testcase_09 AC 79 ms
76,944 KB
testcase_10 AC 105 ms
77,016 KB
testcase_11 AC 106 ms
77,360 KB
testcase_12 AC 42 ms
54,716 KB
testcase_13 AC 61 ms
68,344 KB
testcase_14 AC 100 ms
77,132 KB
testcase_15 AC 73 ms
75,856 KB
testcase_16 AC 99 ms
77,276 KB
testcase_17 AC 46 ms
55,172 KB
testcase_18 AC 57 ms
67,208 KB
testcase_19 AC 96 ms
77,164 KB
testcase_20 AC 86 ms
76,372 KB
testcase_21 AC 82 ms
76,384 KB
testcase_22 AC 98 ms
76,916 KB
testcase_23 AC 42 ms
54,168 KB
testcase_24 AC 53 ms
63,896 KB
testcase_25 AC 82 ms
76,560 KB
testcase_26 AC 95 ms
76,932 KB
testcase_27 AC 43 ms
54,724 KB
testcase_28 AC 91 ms
76,680 KB
testcase_29 AC 69 ms
75,916 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
権限があれば一括ダウンロードができます

ソースコード

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
        else:
            A[i%3]["x"]+=1

    c,o,n,x="conx"
    ans=0

    p,q,r=c,o,n
    for t in range(3):
        x=min(A[0][p],A[1][q],A[2][r])
        if t!=0:
            x=min(x,N-1)
        ans+=x
        p,q,r=q,r,p
    return ans

print(solve())
0