結果

問題 No.1643 Not Substring
ユーザー 草苺奶昔
提出日時 2023-03-14 15:45:19
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 63 bytes
コンパイル時間 221 ms
コンパイル使用メモリ 81,732 KB
実行使用メモリ 53,708 KB
最終ジャッジ日時 2024-09-18 08:08:42
合計ジャッジ時間 2,218 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 9 WA * 17
権限があれば一括ダウンロードができます

ソースコード

diff #

s = input()
res = ""
while res in s:
    res += "a"
print(res)
0