結果
問題 | No.2041 E-mail Address |
ユーザー | ks2m |
提出日時 | 2022-08-19 21:23:16 |
言語 | Java (openjdk 23) |
結果 |
AC
|
実行時間 | 122 ms / 2,000 ms |
コード長 | 403 bytes |
コンパイル時間 | 2,465 ms |
コンパイル使用メモリ | 74,408 KB |
実行使用メモリ | 41,392 KB |
最終ジャッジ日時 | 2024-10-08 07:19:34 |
合計ジャッジ時間 | 4,917 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 10 |
ソースコード
import java.util.Scanner; public class Main { public static void main(String[] args) throws Exception { Scanner sc = new Scanner(System.in); String t = sc.next(); sc.close(); int l = t.indexOf("("); int r = t.indexOf(")"); StringBuilder sb = new StringBuilder(); sb.append(t.substring(0, l)); sb.append('@'); sb.append(t.substring(r + 1)); System.out.println(sb.toString()); } }