結果

問題 No.2041 E-mail Address
ユーザー マサマサ
提出日時 2022-09-07 22:17:58
言語 Java
(openjdk 23)
結果
AC  
実行時間 153 ms / 2,000 ms
コード長 257 bytes
コンパイル時間 3,414 ms
コンパイル使用メモリ 74,428 KB
実行使用メモリ 41,788 KB
最終ジャッジ日時 2024-11-23 13:25:17
合計ジャッジ時間 5,824 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
41,188 KB
testcase_01 AC 124 ms
41,280 KB
testcase_02 AC 122 ms
41,420 KB
testcase_03 AC 125 ms
40,976 KB
testcase_04 AC 127 ms
41,356 KB
testcase_05 AC 128 ms
41,036 KB
testcase_06 AC 109 ms
41,104 KB
testcase_07 AC 137 ms
41,288 KB
testcase_08 AC 142 ms
41,424 KB
testcase_09 AC 139 ms
41,164 KB
testcase_10 AC 138 ms
41,492 KB
testcase_11 AC 140 ms
41,788 KB
testcase_12 AC 153 ms
41,444 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