結果

問題 No.1643 Not Substring
ユーザー U SU S
提出日時 2021-08-13 21:24:48
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 789 bytes
コンパイル時間 349 ms
コンパイル使用メモリ 82,268 KB
実行使用メモリ 62,764 KB
最終ジャッジ日時 2024-10-03 21:16:03
合計ジャッジ時間 2,570 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
61,396 KB
testcase_01 AC 47 ms
60,796 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 47 ms
61,416 KB
testcase_06 WA -
testcase_07 AC 48 ms
60,548 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 49 ms
60,428 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 47 ms
61,332 KB
testcase_23 AC 48 ms
61,628 KB
testcase_24 AC 48 ms
60,788 KB
testcase_25 AC 47 ms
60,660 KB
testcase_26 AC 50 ms
62,064 KB
testcase_27 AC 49 ms
61,704 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# import sys
# #sys.setrecursionlimit(1000000)
# input = sys.stdin.readline
def mp():return map(int,input().split())
def lmp():return list(map(int,input().split()))
import math
import bisect
from copy import deepcopy as dc
from itertools import accumulate
from collections import Counter, defaultdict, deque
import itertools
def ceil(U,V):return (U+V-1)//V
def modf1(N,MOD):return (N-1)%MOD+1
inf = int(1e30)
mod = int(1e9+7)
def rle(lst):
    ans = []
    cnt = 1
    ini = lst[0]
    for i in range(1, len(lst)):
        if ini == lst[i]:cnt += 1
        else:
            ans.append((ini, cnt))
            cnt = 1
            ini = lst[i]
    ans.append((ini, cnt))
    return ans

s = list(input())
r = rle(s)
cnt = 0
for i,j in r:
    if i == "a":cnt = max(cnt,j)
print("a"*cnt+"a")
0