結果

問題 No.2073 Concon Substrings (Swap Version)
ユーザー rlangevinrlangevin
提出日時 2023-01-27 23:07:48
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 749 bytes
コンパイル時間 222 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 105,036 KB
最終ジャッジ日時 2024-06-28 07:58:51
合計ジャッジ時間 5,162 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
53,932 KB
testcase_01 AC 43 ms
53,972 KB
testcase_02 AC 41 ms
55,284 KB
testcase_03 AC 42 ms
55,332 KB
testcase_04 AC 45 ms
53,680 KB
testcase_05 AC 118 ms
104,360 KB
testcase_06 AC 125 ms
104,784 KB
testcase_07 AC 42 ms
54,232 KB
testcase_08 AC 96 ms
94,324 KB
testcase_09 AC 108 ms
98,400 KB
testcase_10 AC 120 ms
104,928 KB
testcase_11 AC 119 ms
104,864 KB
testcase_12 AC 42 ms
54,436 KB
testcase_13 AC 52 ms
65,792 KB
testcase_14 AC 107 ms
100,344 KB
testcase_15 AC 72 ms
84,172 KB
testcase_16 AC 121 ms
105,036 KB
testcase_17 AC 42 ms
54,656 KB
testcase_18 AC 53 ms
66,368 KB
testcase_19 AC 118 ms
103,640 KB
testcase_20 AC 98 ms
93,728 KB
testcase_21 AC 90 ms
93,236 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 95 ms
95,324 KB
testcase_31 AC 73 ms
85,020 KB
testcase_32 AC 53 ms
68,688 KB
testcase_33 AC 57 ms
70,800 KB
testcase_34 AC 54 ms
70,512 KB
testcase_35 AC 84 ms
90,632 KB
testcase_36 AC 57 ms
72,192 KB
testcase_37 AC 84 ms
89,856 KB
testcase_38 AC 54 ms
70,244 KB
testcase_39 AC 90 ms
92,172 KB
testcase_40 AC 89 ms
89,984 KB
testcase_41 AC 89 ms
92,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import *

N = int(input())
S = list(input())
D = [defaultdict(int) for i in range(3)]
for i in range(3*N):
    D[i%3][S[i]] += 1

L = [0, 0, 0]
L[0] = min(D[0]["c"], D[1]["o"], D[2]["n"])
L[1] = min(D[0]["n"], D[1]["c"], D[2]["o"])
L[2] = min(D[0]["o"], D[1]["n"], D[2]["c"])

# print(L)
# print(D)
ans = 0
N *= 3
if N >= 3 * L[0]:
    ans += L[0]
    if L[0]:
        N -= 3 * L[0] + 1
        N = max(0, N)
else:
    print(ans + N//3)
    exit()
if N >= 3 * L[1]:
    ans += L[1]
    if L[1]:
        N -= 3 * L[1] + 1
        N = max(0, N)
else:
    print(ans + N//3)
    exit()
    
if N >= 3 * L[2]:
    ans += L[2]
    if L[2]:
        N -= 3 * L[2] + 1
        N = max(0, N)
else:
    print(ans + N//3)
    exit()

print(ans)
0