結果

問題 No.2073 Concon Substrings (Swap Version)
ユーザー ygd.ygd.
提出日時 2022-09-16 23:09:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 63 ms / 2,000 ms
コード長 1,418 bytes
コンパイル時間 261 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 65,152 KB
最終ジャッジ日時 2024-12-21 22:39:24
合計ジャッジ時間 3,428 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,096 KB
testcase_01 AC 33 ms
52,224 KB
testcase_02 AC 34 ms
51,840 KB
testcase_03 AC 34 ms
52,096 KB
testcase_04 AC 33 ms
52,480 KB
testcase_05 AC 50 ms
63,104 KB
testcase_06 AC 54 ms
64,128 KB
testcase_07 AC 35 ms
52,352 KB
testcase_08 AC 46 ms
61,824 KB
testcase_09 AC 48 ms
62,336 KB
testcase_10 AC 61 ms
65,152 KB
testcase_11 AC 63 ms
64,640 KB
testcase_12 AC 34 ms
52,480 KB
testcase_13 AC 45 ms
61,568 KB
testcase_14 AC 57 ms
64,384 KB
testcase_15 AC 45 ms
62,208 KB
testcase_16 AC 54 ms
63,488 KB
testcase_17 AC 35 ms
52,500 KB
testcase_18 AC 41 ms
60,672 KB
testcase_19 AC 50 ms
62,976 KB
testcase_20 AC 47 ms
62,336 KB
testcase_21 AC 49 ms
62,208 KB
testcase_22 AC 55 ms
63,488 KB
testcase_23 AC 35 ms
51,840 KB
testcase_24 AC 42 ms
60,296 KB
testcase_25 AC 52 ms
62,464 KB
testcase_26 AC 58 ms
63,744 KB
testcase_27 AC 35 ms
52,096 KB
testcase_28 AC 50 ms
62,976 KB
testcase_29 AC 44 ms
60,544 KB
testcase_30 AC 50 ms
62,336 KB
testcase_31 AC 44 ms
61,696 KB
testcase_32 AC 42 ms
60,928 KB
testcase_33 AC 43 ms
61,056 KB
testcase_34 AC 44 ms
61,056 KB
testcase_35 AC 50 ms
62,336 KB
testcase_36 AC 43 ms
60,672 KB
testcase_37 AC 49 ms
61,952 KB
testcase_38 AC 42 ms
60,924 KB
testcase_39 AC 49 ms
62,080 KB
testcase_40 AC 47 ms
62,080 KB
testcase_41 AC 51 ms
62,336 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