結果
問題 | No.2041 E-mail Address |
ユーザー | トミー |
提出日時 | 2023-12-27 01:33:44 |
言語 | C++17(gcc12) (gcc 12.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 317 bytes |
コンパイル時間 | 2,441 ms |
コンパイル使用メモリ | 199,872 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-09-27 15:20:23 |
合計ジャッジ時間 | 2,853 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 10 |
ソースコード
#include<bits/stdc++.h> using namespace std; int main(){ string t; string ans; cin>>t; bool flag=false; for(int i=0;i<=t.size()-1;i++){ if(t[i]=='('){ flag=true; }else if(t[i]==')'&&flag){ flag=false; ans.push_back('@'); } if(!flag&&t[i]!=')'){ ans.push_back(t[i]); } } cout<<ans<<endl; }