結果

問題 No.2073 Concon Substrings (Swap Version)
ユーザー flygonflygon
提出日時 2022-09-16 22:48:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 105 ms / 2,000 ms
コード長 465 bytes
コンパイル時間 967 ms
コンパイル使用メモリ 87,124 KB
実行使用メモリ 77,800 KB
最終ジャッジ日時 2023-08-23 16:20:39
合計ジャッジ時間 5,983 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 71 ms
71,272 KB
testcase_01 AC 70 ms
71,372 KB
testcase_02 AC 73 ms
71,396 KB
testcase_03 AC 70 ms
71,300 KB
testcase_04 AC 70 ms
71,272 KB
testcase_05 AC 91 ms
77,728 KB
testcase_06 AC 98 ms
77,660 KB
testcase_07 AC 71 ms
71,300 KB
testcase_08 AC 87 ms
77,320 KB
testcase_09 AC 90 ms
77,304 KB
testcase_10 AC 105 ms
77,800 KB
testcase_11 AC 103 ms
77,740 KB
testcase_12 AC 71 ms
71,380 KB
testcase_13 AC 83 ms
76,084 KB
testcase_14 AC 99 ms
77,456 KB
testcase_15 AC 89 ms
76,776 KB
testcase_16 AC 97 ms
77,684 KB
testcase_17 AC 70 ms
71,380 KB
testcase_18 AC 80 ms
76,084 KB
testcase_19 AC 93 ms
77,752 KB
testcase_20 AC 91 ms
77,292 KB
testcase_21 AC 88 ms
77,368 KB
testcase_22 AC 95 ms
77,728 KB
testcase_23 AC 71 ms
71,380 KB
testcase_24 AC 78 ms
76,024 KB
testcase_25 AC 92 ms
77,504 KB
testcase_26 AC 96 ms
77,728 KB
testcase_27 AC 73 ms
71,300 KB
testcase_28 AC 93 ms
77,328 KB
testcase_29 AC 85 ms
76,324 KB
testcase_30 AC 90 ms
77,552 KB
testcase_31 AC 84 ms
76,408 KB
testcase_32 AC 80 ms
76,352 KB
testcase_33 AC 83 ms
76,428 KB
testcase_34 AC 85 ms
76,024 KB
testcase_35 AC 90 ms
77,372 KB
testcase_36 AC 86 ms
76,260 KB
testcase_37 AC 90 ms
77,408 KB
testcase_38 AC 84 ms
76,188 KB
testcase_39 AC 96 ms
77,700 KB
testcase_40 AC 91 ms
77,432 KB
testcase_41 AC 93 ms
77,440 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