結果

問題 No.2073 Concon Substrings (Swap Version)
ユーザー shobonvipshobonvip
提出日時 2022-09-16 23:15:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 93 ms / 2,000 ms
コード長 811 bytes
コンパイル時間 223 ms
コンパイル使用メモリ 81,988 KB
実行使用メモリ 77,440 KB
最終ジャッジ日時 2024-12-21 22:51:49
合計ジャッジ時間 4,065 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,736 KB
testcase_01 AC 36 ms
52,864 KB
testcase_02 AC 36 ms
52,608 KB
testcase_03 AC 37 ms
52,480 KB
testcase_04 AC 37 ms
52,608 KB
testcase_05 AC 75 ms
77,056 KB
testcase_06 AC 75 ms
77,056 KB
testcase_07 AC 36 ms
52,480 KB
testcase_08 AC 66 ms
76,528 KB
testcase_09 AC 70 ms
76,544 KB
testcase_10 AC 93 ms
77,184 KB
testcase_11 AC 90 ms
76,900 KB
testcase_12 AC 36 ms
52,352 KB
testcase_13 AC 50 ms
64,128 KB
testcase_14 AC 86 ms
76,928 KB
testcase_15 AC 58 ms
70,016 KB
testcase_16 AC 78 ms
76,872 KB
testcase_17 AC 36 ms
52,352 KB
testcase_18 AC 49 ms
63,872 KB
testcase_19 AC 79 ms
76,672 KB
testcase_20 AC 74 ms
76,288 KB
testcase_21 AC 68 ms
76,416 KB
testcase_22 AC 86 ms
77,440 KB
testcase_23 AC 38 ms
52,864 KB
testcase_24 AC 46 ms
61,952 KB
testcase_25 AC 74 ms
76,544 KB
testcase_26 AC 78 ms
77,056 KB
testcase_27 AC 37 ms
52,224 KB
testcase_28 AC 74 ms
76,672 KB
testcase_29 AC 55 ms
69,120 KB
testcase_30 AC 68 ms
76,692 KB
testcase_31 AC 55 ms
71,040 KB
testcase_32 AC 49 ms
64,768 KB
testcase_33 AC 52 ms
66,048 KB
testcase_34 AC 50 ms
65,792 KB
testcase_35 AC 68 ms
76,288 KB
testcase_36 AC 53 ms
66,944 KB
testcase_37 AC 65 ms
76,352 KB
testcase_38 AC 50 ms
65,408 KB
testcase_39 AC 68 ms
76,536 KB
testcase_40 AC 65 ms
76,368 KB
testcase_41 AC 67 ms
76,544 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
s = input()
con = [[0] * 3 for i in range(3)]
dat = ["c", "o", "n"]



for i in range(3*n):
	for j in range(3):
		if s[i] == dat[j]:
			con[i%3][j] += 1

#無駄なスペースを取らない
ans = 99999999
for i in range(3):
	ans = min(ans, con[i][i])

v = [n] * 3
for i in range(3):
	for j in range(3):
		v[i] -= con[(i+j)%3][i]

#無駄なスペースを1つ分とる
for i in range(64):
	mode = 1
	for j in range(3):
		typ = (i // (4 ** j)) % 4
		if typ == 3:
			if v[j] == 0:
				mode = 0
		else:
			con[j][typ] -= 1
			if con[j][typ] < 0:
				mode = 0
	
	tmp = 0
	for k in range(3):
		r = 999999
		for l in range(3):
			r = min(r, con[(l+k)%3][l])
		tmp += r
	
	if mode:
		ans = max(tmp, ans)
	
	for j in range(3):
		typ = (i // (4 ** j)) % 4
		if typ < 3:
			con[j][typ] += 1

print(ans)
0