結果

問題 No.2073 Concon Substrings (Swap Version)
ユーザー titiatitia
提出日時 2022-09-19 06:01:23
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 324 ms / 2,000 ms
コード長 384 bytes
コンパイル時間 216 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 12,032 KB
最終ジャッジ日時 2024-12-22 02:19:21
合計ジャッジ時間 7,772 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
10,624 KB
testcase_01 AC 32 ms
10,880 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 31 ms
10,752 KB
testcase_04 AC 30 ms
10,880 KB
testcase_05 AC 259 ms
11,772 KB
testcase_06 AC 233 ms
11,776 KB
testcase_07 AC 30 ms
10,624 KB
testcase_08 AC 154 ms
11,520 KB
testcase_09 AC 192 ms
12,032 KB
testcase_10 AC 292 ms
11,900 KB
testcase_11 AC 295 ms
11,904 KB
testcase_12 AC 30 ms
10,624 KB
testcase_13 AC 56 ms
10,880 KB
testcase_14 AC 253 ms
11,900 KB
testcase_15 AC 108 ms
11,136 KB
testcase_16 AC 324 ms
12,032 KB
testcase_17 AC 31 ms
10,752 KB
testcase_18 AC 56 ms
10,624 KB
testcase_19 AC 307 ms
11,900 KB
testcase_20 AC 232 ms
11,648 KB
testcase_21 AC 203 ms
11,264 KB
testcase_22 AC 324 ms
11,904 KB
testcase_23 AC 30 ms
10,624 KB
testcase_24 AC 35 ms
10,752 KB
testcase_25 AC 221 ms
11,648 KB
testcase_26 AC 317 ms
12,028 KB
testcase_27 AC 31 ms
10,624 KB
testcase_28 AC 268 ms
11,904 KB
testcase_29 AC 110 ms
11,136 KB
testcase_30 AC 213 ms
11,644 KB
testcase_31 AC 117 ms
11,264 KB
testcase_32 AC 68 ms
10,880 KB
testcase_33 AC 83 ms
10,880 KB
testcase_34 AC 76 ms
11,008 KB
testcase_35 AC 166 ms
11,388 KB
testcase_36 AC 88 ms
11,008 KB
testcase_37 AC 163 ms
11,264 KB
testcase_38 AC 76 ms
11,008 KB
testcase_39 AC 183 ms
11,776 KB
testcase_40 AC 171 ms
11,136 KB
testcase_41 AC 180 ms
11,388 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

LEN=int(input())
S=input()

C=[0]*3
O=[0]*3
N=[0]*3

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

ANS=0

ANS+=min(C[0],O[1],N[2])
ANS+=min(C[1],O[2],N[0])
ANS+=min(C[2],O[0],N[1])

if ANS==LEN:
    if min(C[0],O[1],N[2])==ANS:
        print(ANS)
    else:
        print(ANS-1)
else:
    print(ANS)
0