結果

問題 No.2073 Concon Substrings (Swap Version)
ユーザー taiga0629kyoprotaiga0629kyopro
提出日時 2022-09-16 21:41:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 221 ms / 2,000 ms
コード長 326 bytes
コンパイル時間 285 ms
コンパイル使用メモリ 82,184 KB
実行使用メモリ 104,336 KB
最終ジャッジ日時 2024-12-21 18:49:13
合計ジャッジ時間 6,885 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,712 KB
testcase_01 AC 44 ms
51,328 KB
testcase_02 AC 42 ms
51,712 KB
testcase_03 AC 44 ms
51,456 KB
testcase_04 AC 49 ms
52,096 KB
testcase_05 AC 200 ms
104,336 KB
testcase_06 AC 210 ms
104,200 KB
testcase_07 AC 45 ms
51,712 KB
testcase_08 AC 148 ms
93,824 KB
testcase_09 AC 177 ms
95,488 KB
testcase_10 AC 200 ms
104,152 KB
testcase_11 AC 202 ms
104,076 KB
testcase_12 AC 40 ms
51,456 KB
testcase_13 AC 66 ms
66,432 KB
testcase_14 AC 176 ms
99,744 KB
testcase_15 AC 96 ms
83,200 KB
testcase_16 AC 201 ms
104,212 KB
testcase_17 AC 46 ms
51,456 KB
testcase_18 AC 63 ms
66,176 KB
testcase_19 AC 221 ms
102,980 KB
testcase_20 AC 156 ms
96,128 KB
testcase_21 AC 142 ms
92,416 KB
testcase_22 AC 205 ms
104,212 KB
testcase_23 AC 44 ms
51,200 KB
testcase_24 AC 53 ms
60,032 KB
testcase_25 AC 156 ms
94,080 KB
testcase_26 AC 197 ms
103,996 KB
testcase_27 AC 42 ms
51,456 KB
testcase_28 AC 171 ms
96,768 KB
testcase_29 AC 96 ms
82,432 KB
testcase_30 AC 151 ms
94,720 KB
testcase_31 AC 104 ms
84,480 KB
testcase_32 AC 68 ms
69,504 KB
testcase_33 AC 73 ms
73,856 KB
testcase_34 AC 69 ms
71,552 KB
testcase_35 AC 126 ms
90,112 KB
testcase_36 AC 77 ms
75,264 KB
testcase_37 AC 128 ms
88,960 KB
testcase_38 AC 70 ms
71,424 KB
testcase_39 AC 141 ms
91,776 KB
testcase_40 AC 129 ms
89,472 KB
testcase_41 AC 139 ms
91,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
s=list(input())
from _collections import defaultdict
cnt=defaultdict(int)
for i in range(3*n):
    cnt[i%3,s[i]]+=1
ans=0
nokori=3*n
for j in range(3):
    res=min(cnt[j,"c"],cnt[(j+1)%3,"o"],cnt[(j+2)%3,"n"])
    while nokori-3*res<0 and res>0:res-=1
    ans+=res
    nokori-=3*res
    nokori-=1

print(ans)

0