結果
問題 | No.2073 Concon Substrings (Swap Version) |
ユーザー |
![]() |
提出日時 | 2022-09-16 22:01:21 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 236 bytes |
コンパイル時間 | 187 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 12,032 KB |
最終ジャッジ日時 | 2024-12-21 20:14:07 |
合計ジャッジ時間 | 3,211 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 5 |
other | AC * 17 WA * 20 |
ソースコード
m = int(input()) s = input() c = [s[i::3].count("c") for i in range(3)] o = [s[i::3].count("o") for i in range(3)] n = [s[i::3].count("n") for i in range(3)] ans = 0 for i in range(3): ans += min(c[i], o[(i+1)%3], n[(i+2)%3]) print(ans)