結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
55,184 KB
testcase_01 AC 44 ms
54,656 KB
testcase_02 AC 45 ms
54,980 KB
testcase_03 AC 43 ms
54,456 KB
testcase_04 AC 44 ms
54,368 KB
testcase_05 AC 85 ms
70,832 KB
testcase_06 AC 86 ms
71,204 KB
testcase_07 AC 44 ms
54,736 KB
testcase_08 AC 76 ms
69,052 KB
testcase_09 AC 79 ms
70,304 KB
testcase_10 AC 118 ms
74,832 KB
testcase_11 AC 110 ms
74,928 KB
testcase_12 AC 43 ms
54,464 KB
testcase_13 AC 70 ms
71,932 KB
testcase_14 AC 101 ms
73,412 KB
testcase_15 AC 79 ms
72,432 KB
testcase_16 AC 80 ms
68,104 KB
testcase_17 AC 43 ms
55,196 KB
testcase_18 AC 57 ms
65,448 KB
testcase_19 AC 82 ms
68,040 KB
testcase_20 AC 74 ms
67,456 KB
testcase_21 AC 69 ms
67,084 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