結果

問題 No.342 一番ワロタww
ユーザー c-yanc-yan
提出日時 2021-02-25 02:44:15
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 31 ms / 5,000 ms
コード長 410 bytes
コンパイル時間 98 ms
コンパイル使用メモリ 11,872 KB
実行使用メモリ 9,900 KB
最終ジャッジ日時 2023-10-25 07:52:05
合計ジャッジ時間 1,439 ms
ジャッジサーバーID
(参考情報)
judge15 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
9,900 KB
testcase_01 AC 29 ms
9,900 KB
testcase_02 AC 29 ms
9,900 KB
testcase_03 AC 30 ms
9,900 KB
testcase_04 AC 30 ms
9,900 KB
testcase_05 AC 29 ms
9,900 KB
testcase_06 AC 29 ms
9,900 KB
testcase_07 AC 29 ms
9,900 KB
testcase_08 AC 29 ms
9,900 KB
testcase_09 AC 30 ms
9,900 KB
testcase_10 AC 29 ms
9,900 KB
testcase_11 AC 31 ms
9,900 KB
testcase_12 AC 29 ms
9,900 KB
testcase_13 AC 29 ms
9,900 KB
testcase_14 AC 30 ms
9,900 KB
testcase_15 AC 30 ms
9,900 KB
testcase_16 AC 29 ms
9,900 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S = input()

d = {}
c = 0
t = ''
for i in range(len(S)):
    if S[i] != 'w':
        if c > 0:
            if t != '':
                d.setdefault(c, [])
                d[c].append(t)
                t = ''
            c = 0
        t += S[i]
    elif S[i] == 'w':
        c += 1
if c > 0 and t != '':
    d.setdefault(c, [])
    d[c].append(t)

if d:
    print(*d[max(d)], sep='\n')
else:
    print('')
0