結果

問題 No.204 ゴールデン・ウィーク(2)
ユーザー kurenaif
提出日時 2016-08-16 21:30:10
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 527 bytes
コンパイル時間 383 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-11-07 18:22:15
合計ジャッジ時間 2,814 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 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 #

#!/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