結果
問題 |
No.204 ゴールデン・ウィーク(2)
|
ユーザー |
![]() |
提出日時 | 2019-05-10 14:01:46 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 213 bytes |
コンパイル時間 | 85 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 10,752 KB |
最終ジャッジ日時 | 2024-07-02 00:58:24 |
合計ジャッジ時間 | 3,178 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 21 WA * 25 |
ソースコード
n = int(input()) s = input() + input() ans = 0 for i in range(15-n): s2 = (s[:i] + "o"*n + s[i+n:]).split("x") longest = (max([ list(i).count("o") for i in s2 ])) ans = max(longest,ans) print(ans)