結果

問題 No.1643 Not Substring
ユーザー googol_S0
提出日時 2021-08-13 21:35:00
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 71 bytes
コンパイル時間 739 ms
コンパイル使用メモリ 82,336 KB
実行使用メモリ 54,084 KB
最終ジャッジ日時 2024-10-03 21:38:42
合計ジャッジ時間 2,140 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 2
other WA * 26
権限があれば一括ダウンロードができます

ソースコード

diff #

X=input()
for t in range(1,111):
  if not('a'*t in X):
    print('a'*t)
0