結果

問題 No.2073 Concon Substrings (Swap Version)
ユーザー ytftytft
提出日時 2022-09-22 20:55:01
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 377 bytes
コンパイル時間 319 ms
コンパイル使用メモリ 82,792 KB
実行使用メモリ 63,836 KB
最終ジャッジ日時 2024-12-22 05:04:08
合計ジャッジ時間 3,850 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,000 KB
testcase_01 AC 38 ms
52,936 KB
testcase_02 AC 39 ms
52,996 KB
testcase_03 AC 37 ms
53,160 KB
testcase_04 AC 39 ms
51,944 KB
testcase_05 AC 51 ms
63,568 KB
testcase_06 AC 54 ms
62,772 KB
testcase_07 AC 38 ms
52,772 KB
testcase_08 AC 47 ms
61,856 KB
testcase_09 AC 47 ms
62,128 KB
testcase_10 AC 58 ms
62,920 KB
testcase_11 AC 57 ms
63,396 KB
testcase_12 AC 39 ms
51,944 KB
testcase_13 AC 43 ms
59,964 KB
testcase_14 AC 56 ms
63,836 KB
testcase_15 AC 49 ms
61,332 KB
testcase_16 AC 51 ms
63,824 KB
testcase_17 AC 40 ms
52,828 KB
testcase_18 AC 45 ms
59,780 KB
testcase_19 AC 51 ms
62,920 KB
testcase_20 AC 48 ms
62,980 KB
testcase_21 AC 49 ms
61,952 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
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 #

import sys
input=lambda:sys.stdin.readline().rstrip()
N=int(input())
S=input()
targ='con'
mem=[[0 for i in range(3)] for j in range(3)]
for i in range(3*N):
	if S[i] in targ:
		mem[i%3][targ.find(S[i])]+=1
if mem[0][0]==mem[1][1]==mem[2][2]==N:
	print(N)
else:
	ans=0
	for i in range(3):
		temp=3*N
		for j in range(3):
			temp=min(mem[j][(i+j)%3],temp)
		ans+=temp
	print(ans)
0