結果

問題 No.342 一番ワロタww
ユーザー yumechiyumechi
提出日時 2016-02-12 23:48:44
言語 PyPy3
(7.3.15)
結果
RE  
(最新)
AC  
(最初)
実行時間 -
コード長 578 bytes
コンパイル時間 420 ms
コンパイル使用メモリ 81,972 KB
実行使用メモリ 65,764 KB
最終ジャッジ日時 2024-09-22 05:06:11
合計ジャッジ時間 2,094 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 AC 53 ms
64,060 KB
testcase_02 AC 54 ms
63,276 KB
testcase_03 AC 54 ms
63,212 KB
testcase_04 AC 53 ms
63,428 KB
testcase_05 AC 53 ms
63,484 KB
testcase_06 AC 53 ms
64,472 KB
testcase_07 AC 53 ms
63,724 KB
testcase_08 AC 54 ms
63,784 KB
testcase_09 AC 53 ms
63,564 KB
testcase_10 AC 53 ms
63,736 KB
testcase_11 AC 54 ms
64,384 KB
testcase_12 AC 54 ms
63,168 KB
testcase_13 AC 54 ms
63,916 KB
testcase_14 AC 54 ms
63,692 KB
testcase_15 AC 54 ms
64,612 KB
testcase_16 AC 54 ms
63,544 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import re

def solve():
    s = input()
    if s.count("w") == 0 or s.count("w") == len(s):
        print("")
        return True

    s = re.sub(r"^w+", "", s)
    removeW = re.sub(r"w+", "w", s)
    splitList = removeW.split("w")
    matchwords = re.findall(r"w+", s)
    maxW = max([len(c) for c in matchwords])
    idxlist = []
    for i in range(len(matchwords)):
        if len(matchwords[i]) == maxW:
            idxlist.append(i)
    idxlist.sort()
    print("\n".join([splitList[i] for i in idxlist]))
    return True

if __name__=="__main__":
    solve()
0