結果

問題 No.2073 Concon Substrings (Swap Version)
ユーザー lilictakalilictaka
提出日時 2022-09-18 23:18:49
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 589 bytes
コンパイル時間 317 ms
コンパイル使用メモリ 82,396 KB
実行使用メモリ 104,820 KB
最終ジャッジ日時 2024-12-22 01:49:08
合計ジャッジ時間 5,649 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
53,376 KB
testcase_01 AC 41 ms
53,504 KB
testcase_02 AC 41 ms
53,632 KB
testcase_03 AC 43 ms
53,632 KB
testcase_04 AC 44 ms
53,504 KB
testcase_05 AC 127 ms
104,444 KB
testcase_06 AC 130 ms
104,568 KB
testcase_07 AC 44 ms
53,248 KB
testcase_08 AC 100 ms
94,080 KB
testcase_09 AC 113 ms
98,132 KB
testcase_10 AC 121 ms
104,568 KB
testcase_11 AC 125 ms
104,568 KB
testcase_12 AC 43 ms
53,632 KB
testcase_13 AC 53 ms
65,408 KB
testcase_14 AC 113 ms
100,480 KB
testcase_15 AC 79 ms
84,224 KB
testcase_16 AC 124 ms
104,820 KB
testcase_17 AC 42 ms
53,376 KB
testcase_18 AC 55 ms
65,536 KB
testcase_19 AC 126 ms
103,408 KB
testcase_20 AC 108 ms
93,824 KB
testcase_21 AC 99 ms
93,056 KB
testcase_22 AC 128 ms
104,816 KB
testcase_23 AC 43 ms
53,248 KB
testcase_24 AC 53 ms
60,928 KB
testcase_25 AC 103 ms
94,464 KB
testcase_26 AC 124 ms
104,692 KB
testcase_27 AC 43 ms
53,376 KB
testcase_28 AC 121 ms
99,484 KB
testcase_29 AC 68 ms
75,648 KB
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 = list(input())
cnt = [defaultdict(int) for _ in range(3)]
for i,s in enumerate(S):
    cnt[i%3][s] +=1
a = min(cnt[0]['c'],cnt[1]['o'],cnt[2]['n'])
b = min(cnt[0]['o'],cnt[1]['n'],cnt[2]['c'])
c = min(cnt[0]['n'],cnt[1]['c'],cnt[2]['o'])
if a > 0 and b > 0 and c > 0:
    ans = min(a+b+c,N-2)
elif a > 0 and b > 0:
    ans = min(a+b,N-1)
elif a > 0 and c > 0:
    ans = min(a+c,N-1)
elif b > 0 and c > 0:
    ans =min(b+c,N-2)
elif a:
    ans = a
elif b:
    ans = min(b,N-1)
elif c:
    ans= min(c,N-1)
else:
    ans = 0
print(ans)
0