結果

問題 No.342 一番ワロタww
ユーザー noriocnorioc
提出日時 2024-07-17 01:36:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 53 ms / 5,000 ms
コード長 470 bytes
コンパイル時間 665 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 53,312 KB
最終ジャッジ日時 2024-07-17 01:37:06
合計ジャッジ時間 2,129 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,808 KB
testcase_01 AC 37 ms
52,516 KB
testcase_02 AC 37 ms
52,444 KB
testcase_03 AC 37 ms
51,940 KB
testcase_04 AC 37 ms
52,544 KB
testcase_05 AC 37 ms
52,896 KB
testcase_06 AC 40 ms
53,028 KB
testcase_07 AC 37 ms
52,436 KB
testcase_08 AC 37 ms
52,080 KB
testcase_09 AC 37 ms
52,516 KB
testcase_10 AC 37 ms
52,476 KB
testcase_11 AC 37 ms
52,768 KB
testcase_12 AC 38 ms
52,276 KB
testcase_13 AC 38 ms
53,312 KB
testcase_14 AC 37 ms
52,184 KB
testcase_15 AC 53 ms
52,648 KB
testcase_16 AC 37 ms
52,360 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S = input()

w = 'w'
while S and S[0] == w:
    S = S[1:]

ps = []
max_wcnt = 0
cands = []
p = 0
while (q := S.find(w, p)) != -1:
    i = q
    while i < len(S) and S[i] == w:
        i += 1

    if i-q > max_wcnt:
        max_wcnt = i-q
        cands.clear()
    if i-q == max_wcnt:
        cands.append(q)

    p = i

for i in cands:
    p = i-1
    res = []
    while p >= 0 and S[p] != w:
        res.append(S[p])
        p -= 1

    print(''.join(reversed(res)))
0