結果
問題 | No.1643 Not Substring |
ユーザー | ygd. |
提出日時 | 2021-08-13 21:22:40 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 38 ms / 2,000 ms |
コード長 | 195 bytes |
コンパイル時間 | 379 ms |
コンパイル使用メモリ | 82,492 KB |
実行使用メモリ | 53,672 KB |
最終ジャッジ日時 | 2024-10-03 21:00:14 |
合計ジャッジ時間 | 2,291 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 26 |
ソースコード
def main(): s = str(input()) num = 0 for i in range(len(s)): if s[i] == "a": num += 1 ans = "a"*(num+1) print(ans) if __name__ == '__main__': main()