結果

問題 No.2041 E-mail Address
ユーザー マサマサ
提出日時 2022-09-07 22:17:58
言語 Java21
(openjdk 21)
結果
AC  
実行時間 140 ms / 2,000 ms
コード長 257 bytes
コンパイル時間 2,455 ms
コンパイル使用メモリ 74,360 KB
実行使用メモリ 41,324 KB
最終ジャッジ日時 2024-05-02 19:26:04
合計ジャッジ時間 4,613 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 97 ms
40,816 KB
testcase_01 AC 110 ms
41,072 KB
testcase_02 AC 115 ms
41,200 KB
testcase_03 AC 106 ms
41,028 KB
testcase_04 AC 105 ms
40,932 KB
testcase_05 AC 103 ms
41,064 KB
testcase_06 AC 106 ms
40,836 KB
testcase_07 AC 120 ms
41,100 KB
testcase_08 AC 102 ms
40,212 KB
testcase_09 AC 116 ms
41,032 KB
testcase_10 AC 126 ms
41,256 KB
testcase_11 AC 136 ms
41,208 KB
testcase_12 AC 140 ms
41,324 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		String str = sc.next();
		String result = str.replaceAll("\\([a-z]*\\)", "@");
		System.out.println(result);
		sc.close();
	}
}
0