結果

問題 No.342 一番ワロタww
ユーザー dangodango
提出日時 2023-06-13 16:03:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 31 ms / 5,000 ms
コード長 336 bytes
コンパイル時間 247 ms
コンパイル使用メモリ 82,588 KB
実行使用メモリ 53,616 KB
最終ジャッジ日時 2024-06-22 01:16:00
合計ジャッジ時間 1,667 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
52,744 KB
testcase_01 AC 30 ms
53,616 KB
testcase_02 AC 29 ms
53,368 KB
testcase_03 AC 28 ms
52,660 KB
testcase_04 AC 28 ms
53,108 KB
testcase_05 AC 29 ms
52,416 KB
testcase_06 AC 29 ms
52,416 KB
testcase_07 AC 28 ms
52,440 KB
testcase_08 AC 29 ms
52,800 KB
testcase_09 AC 29 ms
52,628 KB
testcase_10 AC 29 ms
52,588 KB
testcase_11 AC 28 ms
53,140 KB
testcase_12 AC 28 ms
52,660 KB
testcase_13 AC 29 ms
52,284 KB
testcase_14 AC 29 ms
53,416 KB
testcase_15 AC 28 ms
53,092 KB
testcase_16 AC 29 ms
52,468 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def r(string):
    while string.startswith('w'):
        string = string[1:]
    return string
S = r(input()) + ' '
B = ''
L = [' ']
C = M = 0
for i in S:
  if i=='w':
    C += 1
  else:
    if C > M and B:M, L = C, []
    if C:
      if C == M:
        L += [B]
      B, C = '', 0
  B += i
for i in L:
  print(i.replace("w", ""))
0