結果

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

ソースコード

diff #

#include <iostream>
#include <string>
using namespace std;

int main() 
{
    int a = 0, b = 0;
    string t;
    cin >> t;
    for (int i=0; i<t.size(); i++){
        if (t[i]=='(') a=i;
        if (t[i]==')') b=i;
    }
    cout << t.substr(0,a) << '@' << t.substr(b+1) << endl;
    return 0;
}
0