結果

問題 No.2073 Concon Substrings (Swap Version)
ユーザー sapphire__15sapphire__15
提出日時 2022-08-26 06:00:59
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 650 ms / 2,000 ms
コード長 529 bytes
コンパイル時間 333 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 43,696 KB
最終ジャッジ日時 2024-12-21 17:56:12
合計ジャッジ時間 29,013 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 530 ms
43,568 KB
testcase_01 AC 520 ms
43,160 KB
testcase_02 AC 526 ms
43,444 KB
testcase_03 AC 527 ms
43,184 KB
testcase_04 AC 532 ms
43,320 KB
testcase_05 AC 647 ms
43,308 KB
testcase_06 AC 649 ms
43,572 KB
testcase_07 AC 525 ms
43,568 KB
testcase_08 AC 594 ms
43,556 KB
testcase_09 AC 617 ms
43,420 KB
testcase_10 AC 644 ms
43,316 KB
testcase_11 AC 645 ms
43,552 KB
testcase_12 AC 524 ms
43,440 KB
testcase_13 AC 532 ms
43,572 KB
testcase_14 AC 630 ms
43,444 KB
testcase_15 AC 559 ms
43,568 KB
testcase_16 AC 650 ms
43,416 KB
testcase_17 AC 524 ms
43,440 KB
testcase_18 AC 536 ms
43,440 KB
testcase_19 AC 644 ms
43,312 KB
testcase_20 AC 609 ms
43,552 KB
testcase_21 AC 597 ms
43,692 KB
testcase_22 AC 644 ms
43,576 KB
testcase_23 AC 524 ms
43,676 KB
testcase_24 AC 528 ms
43,316 KB
testcase_25 AC 602 ms
43,572 KB
testcase_26 AC 642 ms
43,184 KB
testcase_27 AC 519 ms
43,572 KB
testcase_28 AC 619 ms
43,444 KB
testcase_29 AC 553 ms
43,468 KB
testcase_30 AC 606 ms
43,544 KB
testcase_31 AC 563 ms
43,440 KB
testcase_32 AC 545 ms
43,696 KB
testcase_33 AC 551 ms
43,572 KB
testcase_34 AC 552 ms
43,440 KB
testcase_35 AC 591 ms
43,696 KB
testcase_36 AC 557 ms
43,568 KB
testcase_37 AC 584 ms
43,568 KB
testcase_38 AC 545 ms
43,568 KB
testcase_39 AC 598 ms
43,440 KB
testcase_40 AC 588 ms
43,564 KB
testcase_41 AC 594 ms
43,676 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