結果

問題 No.2073 Concon Substrings (Swap Version)
ユーザー flygonflygon
提出日時 2022-09-16 22:45:22
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 443 bytes
コンパイル時間 290 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 76,928 KB
最終ジャッジ日時 2024-12-21 22:04:51
合計ジャッジ時間 3,768 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,224 KB
testcase_01 AC 35 ms
52,224 KB
testcase_02 AC 36 ms
51,968 KB
testcase_03 AC 37 ms
52,224 KB
testcase_04 AC 34 ms
51,968 KB
testcase_05 AC 68 ms
76,672 KB
testcase_06 AC 72 ms
76,800 KB
testcase_07 AC 34 ms
51,968 KB
testcase_08 AC 63 ms
76,288 KB
testcase_09 AC 67 ms
76,288 KB
testcase_10 AC 80 ms
76,544 KB
testcase_11 AC 79 ms
76,928 KB
testcase_12 AC 36 ms
51,712 KB
testcase_13 AC 51 ms
64,896 KB
testcase_14 AC 75 ms
76,416 KB
testcase_15 AC 61 ms
72,576 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 71 ms
76,800 KB
testcase_23 AC 36 ms
51,968 KB
testcase_24 AC 44 ms
60,672 KB
testcase_25 AC 67 ms
76,160 KB
testcase_26 AC 72 ms
76,416 KB
testcase_27 AC 35 ms
51,968 KB
testcase_28 AC 66 ms
76,160 KB
testcase_29 AC 55 ms
70,784 KB
testcase_30 AC 65 ms
76,544 KB
testcase_31 AC 53 ms
69,120 KB
testcase_32 AC 49 ms
63,872 KB
testcase_33 AC 52 ms
65,152 KB
testcase_34 AC 52 ms
66,816 KB
testcase_35 AC 63 ms
75,904 KB
testcase_36 AC 58 ms
68,224 KB
testcase_37 AC 67 ms
75,904 KB
testcase_38 AC 55 ms
66,816 KB
testcase_39 AC 65 ms
76,160 KB
testcase_40 AC 69 ms
76,288 KB
testcase_41 AC 64 ms
76,288 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