結果
| 問題 | 
                            No.2041 E-mail Address
                             | 
                    
| コンテスト | |
| ユーザー | 
                             | 
                    
| 提出日時 | 2022-10-03 14:09:38 | 
| 言語 | Java  (openjdk 23)  | 
                    
| 結果 | 
                             
                                AC
                                 
                             
                            
                         | 
                    
| 実行時間 | 121 ms / 2,000 ms | 
| コード長 | 361 bytes | 
| コンパイル時間 | 4,276 ms | 
| コンパイル使用メモリ | 72,732 KB | 
| 実行使用メモリ | 37,704 KB | 
| 最終ジャッジ日時 | 2024-12-27 11:12:57 | 
| 合計ジャッジ時間 | 4,081 ms | 
| 
                            ジャッジサーバーID (参考情報)  | 
                        judge2 / judge1 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 3 | 
| other | AC * 10 | 
ソースコード
class Main{
    public static void main(String[] args)throws java.io.IOException{
        int c;
        while((c=System.in.read())!='\n'){
            if(c=='('){
                while(c!=')')
                    c = System.in.read();
                c = '@';
            }
            System.out.print((char)c);
        }
        System.out.println();
    }
}