結果

問題 No.2073 Concon Substrings (Swap Version)
ユーザー flygonflygon
提出日時 2022-09-16 22:45:22
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 443 bytes
コンパイル時間 229 ms
コンパイル使用メモリ 82,252 KB
実行使用メモリ 76,944 KB
最終ジャッジ日時 2024-06-01 13:45:50
合計ジャッジ時間 4,088 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,072 KB
testcase_01 AC 39 ms
53,284 KB
testcase_02 AC 39 ms
52,220 KB
testcase_03 AC 39 ms
52,028 KB
testcase_04 AC 39 ms
53,228 KB
testcase_05 AC 66 ms
76,604 KB
testcase_06 AC 74 ms
76,768 KB
testcase_07 AC 39 ms
52,716 KB
testcase_08 AC 61 ms
75,968 KB
testcase_09 AC 63 ms
75,980 KB
testcase_10 AC 79 ms
76,836 KB
testcase_11 AC 78 ms
76,724 KB
testcase_12 AC 39 ms
52,240 KB
testcase_13 AC 53 ms
67,140 KB
testcase_14 AC 74 ms
76,484 KB
testcase_15 AC 57 ms
73,460 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 69 ms
76,772 KB
testcase_23 AC 39 ms
53,212 KB
testcase_24 AC 48 ms
61,924 KB
testcase_25 AC 63 ms
76,148 KB
testcase_26 AC 71 ms
76,500 KB
testcase_27 AC 39 ms
52,132 KB
testcase_28 AC 67 ms
76,540 KB
testcase_29 AC 53 ms
71,184 KB
testcase_30 AC 63 ms
76,548 KB
testcase_31 AC 53 ms
70,084 KB
testcase_32 AC 49 ms
65,560 KB
testcase_33 AC 51 ms
66,700 KB
testcase_34 AC 54 ms
68,376 KB
testcase_35 AC 62 ms
76,348 KB
testcase_36 AC 54 ms
69,808 KB
testcase_37 AC 61 ms
76,212 KB
testcase_38 AC 54 ms
67,104 KB
testcase_39 AC 63 ms
76,204 KB
testcase_40 AC 64 ms
76,096 KB
testcase_41 AC 64 ms
76,152 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
  while now >= 3*n:
    ans -= 1
    now -= 3 

print(ans)
0