結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
54,308 KB
testcase_01 AC 43 ms
54,648 KB
testcase_02 AC 43 ms
55,044 KB
testcase_03 AC 43 ms
54,872 KB
testcase_04 AC 42 ms
53,420 KB
testcase_05 AC 88 ms
70,148 KB
testcase_06 AC 84 ms
71,032 KB
testcase_07 AC 42 ms
53,936 KB
testcase_08 AC 75 ms
68,980 KB
testcase_09 AC 77 ms
69,484 KB
testcase_10 AC 115 ms
74,292 KB
testcase_11 AC 115 ms
74,536 KB
testcase_12 AC 44 ms
53,624 KB
testcase_13 AC 77 ms
72,000 KB
testcase_14 AC 111 ms
73,400 KB
testcase_15 AC 80 ms
71,872 KB
testcase_16 AC 81 ms
68,608 KB
testcase_17 AC 43 ms
54,432 KB
testcase_18 AC 57 ms
65,312 KB
testcase_19 AC 79 ms
67,944 KB
testcase_20 AC 72 ms
66,488 KB
testcase_21 AC 69 ms
66,668 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 83 ms
71,388 KB
testcase_31 AC 74 ms
71,140 KB
testcase_32 AC 71 ms
70,812 KB
testcase_33 AC 74 ms
72,396 KB
testcase_34 AC 74 ms
71,152 KB
testcase_35 AC 87 ms
72,276 KB
testcase_36 AC 74 ms
71,368 KB
testcase_37 AC 79 ms
71,036 KB
testcase_38 AC 70 ms
70,888 KB
testcase_39 AC 80 ms
70,712 KB
testcase_40 AC 78 ms
71,004 KB
testcase_41 AC 78 ms
71,080 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