結果

問題 No.2073 Concon Substrings (Swap Version)
ユーザー とりゐとりゐ
提出日時 2022-09-16 21:53:17
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 404 bytes
コンパイル時間 325 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 74,624 KB
最終ジャッジ日時 2024-12-21 19:10:54
合計ジャッジ時間 3,973 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,632 KB
testcase_01 AC 38 ms
53,504 KB
testcase_02 AC 36 ms
53,632 KB
testcase_03 AC 41 ms
53,760 KB
testcase_04 AC 36 ms
53,248 KB
testcase_05 AC 73 ms
69,888 KB
testcase_06 AC 76 ms
70,272 KB
testcase_07 AC 38 ms
53,376 KB
testcase_08 AC 66 ms
68,608 KB
testcase_09 AC 73 ms
69,632 KB
testcase_10 AC 105 ms
74,624 KB
testcase_11 AC 100 ms
73,984 KB
testcase_12 AC 38 ms
53,504 KB
testcase_13 AC 70 ms
71,168 KB
testcase_14 AC 97 ms
73,216 KB
testcase_15 AC 71 ms
71,296 KB
testcase_16 AC 70 ms
67,456 KB
testcase_17 AC 38 ms
53,632 KB
testcase_18 AC 51 ms
64,000 KB
testcase_19 AC 72 ms
67,200 KB
testcase_20 AC 65 ms
66,432 KB
testcase_21 AC 63 ms
65,792 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 81 ms
70,656 KB
testcase_31 AC 65 ms
69,504 KB
testcase_32 AC 63 ms
70,528 KB
testcase_33 AC 66 ms
70,528 KB
testcase_34 AC 68 ms
70,400 KB
testcase_35 AC 78 ms
71,936 KB
testcase_36 AC 67 ms
70,784 KB
testcase_37 AC 70 ms
69,888 KB
testcase_38 AC 62 ms
68,608 KB
testcase_39 AC 71 ms
70,400 KB
testcase_40 AC 69 ms
69,760 KB
testcase_41 AC 71 ms
70,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict


n=int(input())
s=input()

ans=[]
for x in range(3):
  y=(x+1)%3
  z=(x+2)%3
  cnt=[0]*3
  for i in range(3*n):
    if s[i]=='c' and i%3==x:
      cnt[0]+=1
    if s[i]=='o' and i%3==y:
      cnt[1]+=1
    if s[i]=='n' and i%3==z:
      cnt[2]+=1
  
  ans.append(min(cnt))

if sum(ans)==n:
  if max(ans)==n:
    print(n)
  else:
    print(n-1)
else:
  print(sum(ans))
0