結果

問題 No.2073 Concon Substrings (Swap Version)
ユーザー flygonflygon
提出日時 2022-09-16 22:48:38
言語 PyPy3
(7.3.8)
結果
AC  
実行時間 110 ms / 2,000 ms
コード長 465 bytes
コンパイル時間 262 ms
使用メモリ 82,268 KB
最終ジャッジ日時 2023-01-11 08:06:10
合計ジャッジ時間 6,007 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
使用メモリ
testcase_00 AC 77 ms
75,904 KB
testcase_01 AC 75 ms
75,728 KB
testcase_02 AC 75 ms
75,816 KB
testcase_03 AC 76 ms
75,804 KB
testcase_04 AC 76 ms
75,800 KB
testcase_05 AC 96 ms
82,268 KB
testcase_06 AC 103 ms
82,192 KB
testcase_07 AC 77 ms
75,832 KB
testcase_08 AC 93 ms
81,916 KB
testcase_09 AC 94 ms
81,876 KB
testcase_10 AC 110 ms
82,112 KB
testcase_11 AC 108 ms
82,120 KB
testcase_12 AC 76 ms
75,844 KB
testcase_13 AC 91 ms
80,916 KB
testcase_14 AC 107 ms
81,828 KB
testcase_15 AC 94 ms
81,388 KB
testcase_16 AC 101 ms
81,852 KB
testcase_17 AC 76 ms
75,772 KB
testcase_18 AC 85 ms
80,588 KB
testcase_19 AC 99 ms
81,988 KB
testcase_20 AC 94 ms
81,588 KB
testcase_21 AC 93 ms
81,748 KB
testcase_22 AC 100 ms
82,116 KB
testcase_23 AC 76 ms
75,456 KB
testcase_24 AC 85 ms
80,332 KB
testcase_25 AC 94 ms
81,948 KB
testcase_26 AC 99 ms
82,092 KB
testcase_27 AC 74 ms
75,744 KB
testcase_28 AC 98 ms
81,736 KB
testcase_29 AC 90 ms
80,696 KB
testcase_30 AC 93 ms
81,724 KB
testcase_31 AC 88 ms
81,120 KB
testcase_32 AC 86 ms
80,400 KB
testcase_33 AC 86 ms
80,712 KB
testcase_34 AC 88 ms
80,784 KB
testcase_35 AC 95 ms
81,904 KB
testcase_36 AC 92 ms
80,844 KB
testcase_37 AC 95 ms
81,776 KB
testcase_38 AC 89 ms
80,780 KB
testcase_39 AC 96 ms
81,520 KB
testcase_40 AC 96 ms
81,880 KB
testcase_41 AC 97 ms
81,572 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
s = input()
pos = [[0]*3 for i in range(3)]
for i,c in enumerate(s):
  if c == "c":
    pos[0][i%3] += 1
  elif c == "o":
    pos[1][i%3] += 1
  elif c == "n":
    pos[2][i%3] += 1

now = 0
ans = 0

for i in range(3):
  while now % 3 != i:
    now += 1
  
  cc,oo,nn = pos[0][(0+i)%3], pos[1][(1+i)%3], pos[2][(2+i)%3]
  mn = min(cc,oo,nn)
  now += mn * 3
  ans += mn
  if mn == 0: continue
  while now > 3*n:
    ans -= 1
    now -= 3 

print(ans)
0