結果

問題 No.2041 E-mail Address
ユーザー viral8viral8
提出日時 2022-10-03 14:09:38
言語 Java21
(openjdk 21)
結果
AC  
実行時間 102 ms / 2,000 ms
コード長 361 bytes
コンパイル時間 2,069 ms
コンパイル使用メモリ 71,204 KB
実行使用メモリ 51,568 KB
最終ジャッジ日時 2023-08-27 13:54:48
合計ジャッジ時間 3,458 ms
ジャッジサーバーID
(参考情報)
judge11 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
48,888 KB
testcase_01 AC 41 ms
48,796 KB
testcase_02 AC 40 ms
46,632 KB
testcase_03 AC 40 ms
48,992 KB
testcase_04 AC 39 ms
47,220 KB
testcase_05 AC 39 ms
48,792 KB
testcase_06 AC 41 ms
48,840 KB
testcase_07 AC 81 ms
50,872 KB
testcase_08 AC 67 ms
50,792 KB
testcase_09 AC 66 ms
49,952 KB
testcase_10 AC 81 ms
50,596 KB
testcase_11 AC 102 ms
51,568 KB
testcase_12 AC 50 ms
48,628 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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();
    }
}
0