結果

問題 No.1643 Not Substring
ユーザー U SU S
提出日時 2021-08-13 21:31:52
言語 PyPy3
(7.3.13)
結果
AC  
実行時間 121 ms / 2,000 ms
コード長 466 bytes
コンパイル時間 391 ms
コンパイル使用メモリ 86,984 KB
実行使用メモリ 73,388 KB
最終ジャッジ日時 2023-07-27 06:28:16
合計ジャッジ時間 4,937 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
73,200 KB
testcase_01 AC 121 ms
73,288 KB
testcase_02 AC 117 ms
73,388 KB
testcase_03 AC 117 ms
73,332 KB
testcase_04 AC 117 ms
73,300 KB
testcase_05 AC 112 ms
73,288 KB
testcase_06 AC 116 ms
73,172 KB
testcase_07 AC 115 ms
73,248 KB
testcase_08 AC 115 ms
73,208 KB
testcase_09 AC 118 ms
73,200 KB
testcase_10 AC 115 ms
73,276 KB
testcase_11 AC 116 ms
73,152 KB
testcase_12 AC 115 ms
73,208 KB
testcase_13 AC 119 ms
73,376 KB
testcase_14 AC 117 ms
73,344 KB
testcase_15 AC 120 ms
73,256 KB
testcase_16 AC 114 ms
73,212 KB
testcase_17 AC 116 ms
73,200 KB
testcase_18 AC 112 ms
73,348 KB
testcase_19 AC 115 ms
73,168 KB
testcase_20 AC 110 ms
73,248 KB
testcase_21 AC 112 ms
73,264 KB
testcase_22 AC 113 ms
73,284 KB
testcase_23 AC 112 ms
73,200 KB
testcase_24 AC 113 ms
73,156 KB
testcase_25 AC 116 ms
73,268 KB
testcase_26 AC 112 ms
73,276 KB
testcase_27 AC 113 ms
73,064 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)

s = input()
print("a"*(s.count("a")+1))
0