結果

問題 No.2073 Concon Substrings (Swap Version)
ユーザー sapphire__15sapphire__15
提出日時 2022-08-25 14:35:20
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 526 bytes
コンパイル時間 83 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 44,336 KB
最終ジャッジ日時 2024-06-01 11:39:17
合計ジャッジ時間 26,755 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 513 ms
43,824 KB
testcase_01 AC 511 ms
44,048 KB
testcase_02 AC 512 ms
44,080 KB
testcase_03 AC 509 ms
44,280 KB
testcase_04 AC 519 ms
43,948 KB
testcase_05 AC 630 ms
43,828 KB
testcase_06 AC 628 ms
43,692 KB
testcase_07 AC 517 ms
44,212 KB
testcase_08 AC 588 ms
44,208 KB
testcase_09 AC 604 ms
43,960 KB
testcase_10 AC 622 ms
43,688 KB
testcase_11 AC 629 ms
44,336 KB
testcase_12 AC 510 ms
44,212 KB
testcase_13 AC 526 ms
43,688 KB
testcase_14 AC 610 ms
44,204 KB
testcase_15 AC 546 ms
43,688 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 626 ms
44,208 KB
testcase_23 AC 509 ms
44,084 KB
testcase_24 AC 517 ms
44,072 KB
testcase_25 AC 584 ms
44,076 KB
testcase_26 AC 634 ms
44,084 KB
testcase_27 AC 511 ms
44,212 KB
testcase_28 AC 613 ms
44,208 KB
testcase_29 AC 538 ms
44,208 KB
testcase_30 AC 586 ms
44,076 KB
testcase_31 AC 553 ms
44,084 KB
testcase_32 AC 524 ms
44,076 KB
testcase_33 AC 539 ms
44,076 KB
testcase_34 AC 527 ms
43,956 KB
testcase_35 AC 573 ms
44,332 KB
testcase_36 AC 547 ms
44,200 KB
testcase_37 AC 571 ms
43,828 KB
testcase_38 AC 538 ms
44,204 KB
testcase_39 AC 600 ms
43,816 KB
testcase_40 AC 567 ms
44,332 KB
testcase_41 AC 579 ms
44,076 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 == N:
        print(N)
    else:
        print(min(sum(cnt), N-1))

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