結果

問題 No.2073 Concon Substrings (Swap Version)
ユーザー ygd.ygd.
提出日時 2022-09-16 23:09:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 68 ms / 2,000 ms
コード長 1,418 bytes
コンパイル時間 388 ms
コンパイル使用メモリ 82,412 KB
実行使用メモリ 65,748 KB
最終ジャッジ日時 2024-06-01 14:00:22
合計ジャッジ時間 3,782 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,932 KB
testcase_01 AC 39 ms
53,920 KB
testcase_02 AC 38 ms
53,268 KB
testcase_03 AC 40 ms
52,668 KB
testcase_04 AC 41 ms
52,808 KB
testcase_05 AC 55 ms
64,524 KB
testcase_06 AC 60 ms
64,940 KB
testcase_07 AC 39 ms
52,788 KB
testcase_08 AC 51 ms
62,428 KB
testcase_09 AC 54 ms
63,024 KB
testcase_10 AC 67 ms
65,596 KB
testcase_11 AC 68 ms
65,132 KB
testcase_12 AC 40 ms
53,760 KB
testcase_13 AC 52 ms
62,820 KB
testcase_14 AC 67 ms
65,748 KB
testcase_15 AC 53 ms
62,888 KB
testcase_16 AC 59 ms
63,604 KB
testcase_17 AC 39 ms
53,404 KB
testcase_18 AC 47 ms
61,020 KB
testcase_19 AC 58 ms
64,396 KB
testcase_20 AC 56 ms
63,208 KB
testcase_21 AC 53 ms
63,504 KB
testcase_22 AC 60 ms
65,048 KB
testcase_23 AC 38 ms
53,324 KB
testcase_24 AC 46 ms
61,556 KB
testcase_25 AC 56 ms
63,168 KB
testcase_26 AC 60 ms
64,520 KB
testcase_27 AC 39 ms
53,120 KB
testcase_28 AC 56 ms
63,620 KB
testcase_29 AC 49 ms
61,512 KB
testcase_30 AC 57 ms
64,116 KB
testcase_31 AC 51 ms
62,408 KB
testcase_32 AC 49 ms
61,784 KB
testcase_33 AC 49 ms
61,884 KB
testcase_34 AC 50 ms
62,488 KB
testcase_35 AC 53 ms
63,940 KB
testcase_36 AC 49 ms
61,900 KB
testcase_37 AC 53 ms
62,852 KB
testcase_38 AC 49 ms
62,028 KB
testcase_39 AC 53 ms
62,980 KB
testcase_40 AC 54 ms
63,112 KB
testcase_41 AC 55 ms
63,688 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
#input = sys.stdin.readline
#input = sys.stdin.buffer.readline #文字列はダメ
#sys.setrecursionlimit(1000000)
import math
#import bisect
#import itertools
#import random
#from heapq import heapify, heappop, heappush
#from collections import defaultdict 
#from collections import deque
#import copy #DeepCopy: hoge = [_[:] for _ in hogehoge]
#from functools import lru_cache
#@lru_cache(maxsize=None)
#MOD = pow(10,9) + 7
#MOD = 998244353
#dx = [1,0,-1,0]
#dy = [0,1,0,-1]
#dx8 = [1,1,0,-1,-1,-1,0,1]
#dy8 = [0,1,1,1,0,-1,-1,-1]

def main():
    n = int(input())
    S = str(input())

    C = [0,0,0]; O = [0,0,0]; N = [0,0,0]

    for i in range(3*n):
        if S[i] == 'c':
            C[i%3] += 1
        if S[i] == 'o':
            O[i%3] += 1
        if S[i] == 'n':
            N[i%3] += 1
    
    first = min(C[0],O[1],N[2])
    second = min(C[1],O[2],N[0])
    third = min(C[2],O[0],N[1])
    # print(C,O,N,first,second,third)

    block = first
    ans = first

    if second > 0:
        block += second + 1
        if block > n:
            ans += second-1
            print(ans);exit()
        else:
            ans += second
    
    if third > 0:
        if second > 0:
            block += third
        else:
            block += third + 1

        if block > n:
            ans += third - 1
        else:
            ans += third
    print(ans)


if __name__ == '__main__':
    main()
0