結果

問題 No.204 ゴールデン・ウィーク(2)
コンテスト
ユーザー kurenaif
提出日時 2016-08-16 21:30:10
言語 Python3
(3.14.3 + numpy 2.4.4 + scipy 1.17.1)
コンパイル:
python3 -mpy_compile _filename_
実行:
python3 _filename_
結果
WA  
実行時間 -
コード長 527 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 347 ms
コンパイル使用メモリ 20,696 KB
実行使用メモリ 15,488 KB
最終ジャッジ日時 2026-05-08 01:57:08
合計ジャッジ時間 7,619 ms
ジャッジサーバーID
(参考情報)
judge3_0 / judge2_0
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 9 WA * 37
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.py:19: SyntaxWarning: "is" with 'str' literal. Did you mean "=="?
  tar = 'x' if (tar is 'o') else 'o'
Main.py:30: SyntaxWarning: "is" with 'int' literal. Did you mean "=="?
  if len(cntarray) % 2 is 0 and cntarray[-1] <= D:

ソースコード

diff #
raw source code

#!/usr/bin/python3

D = int(input())
C = input()
C += input()

tar = 'o'

cntarray = []

cnt = 0

for i in range(len(C)):
    if C[i] is tar:
        cnt = cnt+1
    else:
        cntarray.append(cnt)
        cnt = 1
        tar = 'x' if (tar is 'o') else 'o'


cntarray.append(cnt)

ma = 0

for i in range(0, len(cntarray)-2, 2):
    if cntarray[i+1] <= D:
        ma = max(ma, cntarray[i]+cntarray[i+1]+cntarray[i+2])

if len(cntarray) % 2 is 0 and cntarray[-1] <= D:
    ma = max(ma, cntarray[-1] + cntarray[-2])

print(ma)
0