結果

問題 No.342 一番ワロタww
ユーザー convexineqconvexineq
提出日時 2021-01-14 06:58:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 43 ms / 5,000 ms
コード長 480 bytes
コンパイル時間 186 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 52,224 KB
最終ジャッジ日時 2024-05-02 23:13:08
合計ジャッジ時間 1,752 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,840 KB
testcase_01 AC 40 ms
51,968 KB
testcase_02 AC 42 ms
52,096 KB
testcase_03 AC 42 ms
51,840 KB
testcase_04 AC 42 ms
51,712 KB
testcase_05 AC 42 ms
51,584 KB
testcase_06 AC 41 ms
51,712 KB
testcase_07 AC 41 ms
51,840 KB
testcase_08 AC 41 ms
51,712 KB
testcase_09 AC 43 ms
51,712 KB
testcase_10 AC 41 ms
51,968 KB
testcase_11 AC 41 ms
51,584 KB
testcase_12 AC 42 ms
51,840 KB
testcase_13 AC 41 ms
51,968 KB
testcase_14 AC 41 ms
52,224 KB
testcase_15 AC 41 ms
51,712 KB
testcase_16 AC 42 ms
51,968 KB
権限があれば一括ダウンロードができます

ソースコード

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