結果

問題 No.2073 Concon Substrings (Swap Version)
ユーザー とりゐとりゐ
提出日時 2022-09-16 21:51:24
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 313 bytes
コンパイル時間 293 ms
コンパイル使用メモリ 81,972 KB
実行使用メモリ 75,344 KB
最終ジャッジ日時 2024-12-21 19:07:57
合計ジャッジ時間 4,203 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,744 KB
testcase_01 AC 38 ms
54,456 KB
testcase_02 AC 36 ms
53,536 KB
testcase_03 AC 38 ms
54,576 KB
testcase_04 AC 36 ms
53,856 KB
testcase_05 AC 75 ms
70,652 KB
testcase_06 AC 76 ms
71,828 KB
testcase_07 AC 36 ms
53,312 KB
testcase_08 AC 65 ms
70,376 KB
testcase_09 AC 68 ms
69,448 KB
testcase_10 AC 111 ms
75,344 KB
testcase_11 AC 100 ms
74,084 KB
testcase_12 AC 37 ms
53,896 KB
testcase_13 AC 66 ms
71,276 KB
testcase_14 AC 90 ms
73,020 KB
testcase_15 AC 73 ms
72,412 KB
testcase_16 AC 76 ms
67,868 KB
testcase_17 AC 39 ms
53,544 KB
testcase_18 AC 53 ms
65,508 KB
testcase_19 AC 73 ms
67,512 KB
testcase_20 AC 67 ms
66,364 KB
testcase_21 AC 63 ms
66,224 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 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict


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

ans=0
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+=min(cnt)

print(ans)
0