結果

問題 No.2041 E-mail Address
ユーザー nyst
提出日時 2022-08-19 21:26:28
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 580 bytes
コンパイル時間 760 ms
コンパイル使用メモリ 83,064 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-10-08 07:27:59
合計ジャッジ時間 1,473 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 10
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <map>
#include <queue>
#include <algorithm>
#include <set>
#include <cmath>
#include <bitset>
using namespace std;

int main() {
    string s;cin>>s;
    int n = (int)s.size();
    
    bool start = false;
    string t="";
    for(int i=0;i<n;i++){
        if(s[i]=='(') start=true;
        if(s[i]==')'){
            t.push_back('@');
            start =false;
            continue;
        }
        if(start) {
            continue;
        }else{
            t.push_back(s[i]);
        }
    }
    
    cout << t << endl;
    
}
0