結果

問題 No.1643 Not Substring
ユーザー zezerozezero
提出日時 2021-08-13 21:36:39
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 440 bytes
コンパイル時間 1,415 ms
コンパイル使用メモリ 97,000 KB
最終ジャッジ日時 2025-01-23 18:27:57
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 26
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <string>
#include <vector>
#include <algorithm>
#include <utility>
#include <map>
#include <queue>
#include <cmath>
using namespace std;
typedef long long ll;
#define rep(i, n) for (int i=0;i < (int)(n);i++)

int main(){
    string s;
    cin >> s;
    string ans;
    for (int i = 0; i < int(s.size());i++){
        if (s[i] == 'a') ans.push_back('a');
    }
    cout << ans+"a" << endl;
    

    return 0;
}
0