結果

問題 No.2073 Concon Substrings (Swap Version)
ユーザー sapphire__15sapphire__15
提出日時 2022-08-26 06:00:59
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 651 ms / 2,000 ms
コード長 529 bytes
コンパイル時間 331 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 44,084 KB
最終ジャッジ日時 2024-06-01 11:39:46
合計ジャッジ時間 26,483 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 521 ms
43,948 KB
testcase_01 AC 525 ms
43,696 KB
testcase_02 AC 526 ms
43,696 KB
testcase_03 AC 524 ms
43,696 KB
testcase_04 AC 532 ms
43,696 KB
testcase_05 AC 646 ms
43,700 KB
testcase_06 AC 644 ms
43,824 KB
testcase_07 AC 528 ms
43,952 KB
testcase_08 AC 595 ms
43,696 KB
testcase_09 AC 621 ms
43,676 KB
testcase_10 AC 649 ms
43,952 KB
testcase_11 AC 644 ms
43,956 KB
testcase_12 AC 528 ms
44,084 KB
testcase_13 AC 535 ms
43,704 KB
testcase_14 AC 626 ms
43,696 KB
testcase_15 AC 555 ms
43,820 KB
testcase_16 AC 651 ms
43,680 KB
testcase_17 AC 529 ms
43,820 KB
testcase_18 AC 544 ms
43,696 KB
testcase_19 AC 642 ms
43,952 KB
testcase_20 AC 610 ms
43,700 KB
testcase_21 AC 598 ms
43,692 KB
testcase_22 AC 641 ms
43,952 KB
testcase_23 AC 525 ms
43,824 KB
testcase_24 AC 528 ms
43,932 KB
testcase_25 AC 598 ms
43,960 KB
testcase_26 AC 647 ms
43,692 KB
testcase_27 AC 523 ms
43,696 KB
testcase_28 AC 624 ms
43,700 KB
testcase_29 AC 561 ms
43,824 KB
testcase_30 AC 602 ms
43,824 KB
testcase_31 AC 560 ms
43,952 KB
testcase_32 AC 539 ms
43,828 KB
testcase_33 AC 548 ms
43,704 KB
testcase_34 AC 545 ms
43,952 KB
testcase_35 AC 584 ms
43,700 KB
testcase_36 AC 548 ms
43,676 KB
testcase_37 AC 582 ms
43,672 KB
testcase_38 AC 546 ms
43,672 KB
testcase_39 AC 595 ms
43,960 KB
testcase_40 AC 581 ms
43,696 KB
testcase_41 AC 598 ms
43,936 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
from functools import reduce
from numpy import roll


def main():
    N = int(input())
    S = input()
    CON = "con"

    buff = [defaultdict(lambda: 0) for _ in range(3)]

    for i, j in enumerate(S):
        buff[i%3][j] += 1
    
    cnt = [reduce(min,
                  map(lambda x, y: x[y],
                      roll(buff, i), CON))
           for i in range(3)]

    if cnt[0] == N:
        print(N)
    else:
        print(min(sum(cnt), N-1))

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