結果
| 問題 | No.2041 E-mail Address |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2022-10-03 14:09:38 |
| 言語 | Java (openjdk 25.0.2) |
| 結果 |
AC
|
| 実行時間 | 45 ms / 2,000 ms |
| コード長 | 361 bytes |
| 記録 | |
| コンパイル時間 | 1,613 ms |
| コンパイル使用メモリ | 80,704 KB |
| 実行使用メモリ | 38,784 KB |
| 最終ジャッジ日時 | 2026-06-02 00:49:50 |
| 合計ジャッジ時間 | 3,213 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge1_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| 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();
}
}