結果
問題 | No.2041 E-mail Address |
ユーザー | merlin |
提出日時 | 2022-08-19 21:26:34 |
言語 | Java (openjdk 23) |
結果 |
AC
|
実行時間 | 64 ms / 2,000 ms |
コード長 | 526 bytes |
コンパイル時間 | 3,232 ms |
コンパイル使用メモリ | 74,892 KB |
実行使用メモリ | 52,140 KB |
最終ジャッジ日時 | 2024-10-08 07:28:37 |
合計ジャッジ時間 | 4,713 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 10 |
ソースコード
import java.io.*; import java.util.*; class Main { public static void main(String args[])throws Exception { BufferedReader bu=new BufferedReader(new InputStreamReader(System.in)); StringBuilder sb=new StringBuilder(); String s=bu.readLine(); for(int i=0;i<s.length();i++) { if(s.charAt(i)!='(') {sb.append(s.charAt(i)); continue;} sb.append("@"); while(i<s.length() && s.charAt(i)!=')') i++; } System.out.println(sb); } }