結果

問題 No.2073 Concon Substrings (Swap Version)
ユーザー 👑 p-adicp-adic
提出日時 2023-05-29 16:32:39
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 703 ms / 2,000 ms
コード長 152 bytes
コンパイル時間 132 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 12,028 KB
最終ジャッジ日時 2024-06-08 19:16:25
合計ジャッジ時間 14,064 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,496 KB
testcase_01 AC 24 ms
10,368 KB
testcase_02 AC 24 ms
10,496 KB
testcase_03 AC 25 ms
10,496 KB
testcase_04 AC 24 ms
10,496 KB
testcase_05 AC 703 ms
11,900 KB
testcase_06 AC 663 ms
11,900 KB
testcase_07 AC 25 ms
10,496 KB
testcase_08 AC 426 ms
11,264 KB
testcase_09 AC 509 ms
11,904 KB
testcase_10 AC 649 ms
11,904 KB
testcase_11 AC 648 ms
11,776 KB
testcase_12 AC 25 ms
10,496 KB
testcase_13 AC 84 ms
10,624 KB
testcase_14 AC 621 ms
11,644 KB
testcase_15 AC 209 ms
10,752 KB
testcase_16 AC 613 ms
11,776 KB
testcase_17 AC 25 ms
10,496 KB
testcase_18 AC 81 ms
10,624 KB
testcase_19 AC 658 ms
11,776 KB
testcase_20 AC 443 ms
11,516 KB
testcase_21 AC 371 ms
11,520 KB
testcase_22 AC 608 ms
11,644 KB
testcase_23 AC 25 ms
10,496 KB
testcase_24 AC 33 ms
10,624 KB
testcase_25 AC 417 ms
11,392 KB
testcase_26 AC 631 ms
12,028 KB
testcase_27 AC 25 ms
10,496 KB
testcase_28 AC 534 ms
11,388 KB
testcase_29 AC 182 ms
11,008 KB
testcase_30 AC 477 ms
11,776 KB
testcase_31 AC 234 ms
11,008 KB
testcase_32 AC 113 ms
10,752 KB
testcase_33 AC 143 ms
10,752 KB
testcase_34 AC 127 ms
10,880 KB
testcase_35 AC 346 ms
11,264 KB
testcase_36 AC 164 ms
10,880 KB
testcase_37 AC 336 ms
11,264 KB
testcase_38 AC 129 ms
10,752 KB
testcase_39 AC 382 ms
11,520 KB
testcase_40 AC 340 ms
11,392 KB
testcase_41 AC 396 ms
11,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

I,R=input,range
N=int(I())*3
S=I()
a=0
s="con"
for d in R(3):
	c=[0]*3
	for i in R(N):c[i%3]+=S[i]==s[(i+d)%3]
	a+=min(c+[max(0,(N-a*3-d)//3)])
print(a)
0