結果

問題 No.342 一番ワロタww
ユーザー yansi819yansi819
提出日時 2024-05-20 11:39:43
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 459 bytes
コンパイル時間 399 ms
コンパイル使用メモリ 82,440 KB
実行使用メモリ 53,700 KB
最終ジャッジ日時 2024-05-20 11:39:45
合計ジャッジ時間 1,879 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,208 KB
testcase_01 AC 31 ms
53,080 KB
testcase_02 AC 30 ms
52,572 KB
testcase_03 AC 30 ms
52,560 KB
testcase_04 AC 32 ms
52,400 KB
testcase_05 AC 31 ms
52,924 KB
testcase_06 AC 34 ms
52,824 KB
testcase_07 AC 34 ms
52,612 KB
testcase_08 AC 36 ms
52,396 KB
testcase_09 AC 36 ms
52,664 KB
testcase_10 AC 34 ms
52,396 KB
testcase_11 AC 34 ms
52,004 KB
testcase_12 AC 32 ms
52,680 KB
testcase_13 AC 34 ms
52,020 KB
testcase_14 AC 33 ms
52,128 KB
testcase_15 AC 35 ms
53,700 KB
testcase_16 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

S = input().rstrip()
W, X = "", ""
A = []
cnt, MAX = 0, 0
for i in range(len(S)):
    if S[i] == "w":
        cnt += 1
        X = W
    else:
        if MAX <= cnt:
            if MAX < cnt:
                A.clear()
            MAX = cnt
            if X != "":
                A.append(X)
        if cnt > 0:
            W = ""
        cnt = 0
        W += S[i]
if MAX <= cnt:
    if MAX < cnt:
        A.clear()
    A.append(X)
for w in A:
    print(w)
0