結果

問題 No.2073 Concon Substrings (Swap Version)
ユーザー timitimi
提出日時 2022-09-17 01:53:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 91 ms / 2,000 ms
コード長 350 bytes
コンパイル時間 988 ms
コンパイル使用メモリ 82,216 KB
実行使用メモリ 76,800 KB
最終ジャッジ日時 2024-12-22 00:04:45
合計ジャッジ時間 4,385 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,584 KB
testcase_01 AC 42 ms
52,224 KB
testcase_02 AC 42 ms
52,096 KB
testcase_03 AC 41 ms
51,712 KB
testcase_04 AC 40 ms
52,352 KB
testcase_05 AC 89 ms
76,676 KB
testcase_06 AC 85 ms
76,800 KB
testcase_07 AC 40 ms
51,584 KB
testcase_08 AC 76 ms
76,020 KB
testcase_09 AC 79 ms
76,288 KB
testcase_10 AC 91 ms
76,544 KB
testcase_11 AC 83 ms
76,544 KB
testcase_12 AC 40 ms
51,840 KB
testcase_13 AC 50 ms
61,696 KB
testcase_14 AC 79 ms
76,288 KB
testcase_15 AC 56 ms
70,144 KB
testcase_16 AC 86 ms
76,688 KB
testcase_17 AC 42 ms
51,840 KB
testcase_18 AC 50 ms
62,336 KB
testcase_19 AC 89 ms
76,724 KB
testcase_20 AC 73 ms
76,232 KB
testcase_21 AC 70 ms
76,196 KB
testcase_22 AC 83 ms
76,432 KB
testcase_23 AC 41 ms
51,840 KB
testcase_24 AC 47 ms
58,624 KB
testcase_25 AC 71 ms
76,488 KB
testcase_26 AC 84 ms
76,612 KB
testcase_27 AC 43 ms
51,712 KB
testcase_28 AC 78 ms
76,428 KB
testcase_29 AC 56 ms
69,120 KB
testcase_30 AC 73 ms
76,288 KB
testcase_31 AC 57 ms
68,480 KB
testcase_32 AC 52 ms
62,720 KB
testcase_33 AC 56 ms
64,256 KB
testcase_34 AC 58 ms
64,640 KB
testcase_35 AC 72 ms
76,080 KB
testcase_36 AC 58 ms
65,920 KB
testcase_37 AC 72 ms
76,160 KB
testcase_38 AC 55 ms
64,896 KB
testcase_39 AC 71 ms
76,244 KB
testcase_40 AC 68 ms
76,288 KB
testcase_41 AC 71 ms
76,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
S=input()
D={}
D['c']=[0,0,0]
D['o']=[0,0,0]
D['n']=[0,0,0]
for i in range(3*N):
  s=S[i]
  if s not in D:
    D[s]=[0]*3
  D[s][i%3]+=1

a=min(D['c'][0],D['o'][1],D['n'][2])
b=min(D['c'][1],D['o'][2],D['n'][0])
c=min(D['c'][2],D['o'][0],D['n'][1])
d=a+b+c
if N!=d:
  print(d)
else:
  if S=='con'*N:
    print(d)
  else:
    print(d-1)
0