結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
54,180 KB
testcase_01 AC 38 ms
54,440 KB
testcase_02 AC 36 ms
55,504 KB
testcase_03 AC 41 ms
54,568 KB
testcase_04 AC 38 ms
54,496 KB
testcase_05 AC 78 ms
77,124 KB
testcase_06 AC 82 ms
76,992 KB
testcase_07 AC 39 ms
54,916 KB
testcase_08 AC 63 ms
74,176 KB
testcase_09 AC 72 ms
76,444 KB
testcase_10 AC 99 ms
76,860 KB
testcase_11 AC 95 ms
76,872 KB
testcase_12 AC 39 ms
54,144 KB
testcase_13 AC 54 ms
69,096 KB
testcase_14 AC 89 ms
76,876 KB
testcase_15 AC 66 ms
76,332 KB
testcase_16 AC 87 ms
77,060 KB
testcase_17 AC 41 ms
53,904 KB
testcase_18 AC 53 ms
67,100 KB
testcase_19 AC 86 ms
76,864 KB
testcase_20 AC 76 ms
76,644 KB
testcase_21 AC 76 ms
76,280 KB
testcase_22 AC 92 ms
77,060 KB
testcase_23 AC 40 ms
54,784 KB
testcase_24 AC 46 ms
63,576 KB
testcase_25 AC 74 ms
76,640 KB
testcase_26 AC 85 ms
76,872 KB
testcase_27 AC 39 ms
54,636 KB
testcase_28 AC 81 ms
77,356 KB
testcase_29 AC 60 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