結果
問題 | No.2041 E-mail Address |
ユーザー | erbowl |
提出日時 | 2022-08-19 21:23:00 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 3 ms / 2,000 ms |
コード長 | 541 bytes |
コンパイル時間 | 1,910 ms |
コンパイル使用メモリ | 194,240 KB |
最終ジャッジ日時 | 2025-01-31 00:34:45 |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 10 |
ソースコード
typedef long long ll; typedef long double ld; #include <bits/stdc++.h> using namespace std; #define int long long signed main(){ string t; std::cin >> t; bool ok = true; for (auto e : t) { if(e!='('&&ok){ std::cout << e; }else if(ok&&e=='('){ std::cout << '@'; ok=false; }else if(!ok&&e!=')'){ continue; }else if(!ok&&e==')'){ ok=true; }else if(ok){ std::cout << e; } } std::cout << std::endl; }