結果

問題 No.342 一番ワロタww
ユーザー convexineq
提出日時 2021-01-14 06:58:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 38 ms / 5,000 ms
コード長 480 bytes
コンパイル時間 201 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 52,480 KB
最終ジャッジ日時 2024-11-23 18:47:41
合計ジャッジ時間 1,542 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 14
権限があれば一括ダウンロードができます

ソースコード

diff #

s = input()
while s and s[0]=="w": s = s[1:]
res = []
now = ""
c = 0
for i in s:
    if i != "w":
        if c:
            res.append(c)
            c = 0
        now += i
    else:
        if now:
            res.append(now)
            now = ""
        c += 1
if now: res.append(now)
if c: res.append(c)

ans = []
num = 0
for i,j in zip(res[::2],res[1::2]):
    if num < j:
        ans = [i]
        num = j
    elif num==j:
        ans.append(i)
for i in ans:
    print(i)
0