結果

問題 No.342 一番ワロタww
ユーザー akitsugu777akitsugu777
提出日時 2019-07-31 14:12:19
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 325 bytes
コンパイル時間 204 ms
コンパイル使用メモリ 10,700 KB
実行使用メモリ 7,972 KB
最終ジャッジ日時 2023-09-18 15:59:59
合計ジャッジ時間 1,613 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 15 ms
7,816 KB
testcase_02 AC 15 ms
7,936 KB
testcase_03 AC 15 ms
7,944 KB
testcase_04 AC 15 ms
7,848 KB
testcase_05 AC 16 ms
7,860 KB
testcase_06 AC 16 ms
7,936 KB
testcase_07 AC 16 ms
7,736 KB
testcase_08 AC 15 ms
7,868 KB
testcase_09 AC 16 ms
7,916 KB
testcase_10 AC 16 ms
7,916 KB
testcase_11 AC 15 ms
7,756 KB
testcase_12 AC 16 ms
7,800 KB
testcase_13 AC 16 ms
7,940 KB
testcase_14 WA -
testcase_15 AC 15 ms
7,804 KB
testcase_16 AC 16 ms
7,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

s = input()

w = 0
t = ''
l = []
for i in s:
    if i != 'w' and w == 0:
        t += i
    elif i == 'w':
        w += 1
    else:
        if t != '':
            l.append([w, t])
        t = i
        w = 0
else:
    l.append([w, t])

l2 = sorted(l)[::-1]
x = l2[0][0]

for i in l:
    if i[0] == x:
        print(i[1])
0