結果
| 問題 | No.2041 E-mail Address |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2022-11-23 17:37:18 |
| 言語 | JavaScript (node v26.7.0 + ACL) |
| 結果 |
AC
不安定
|
| 実行時間 | 38 ms / 2,000 ms |
| + 910µs | |
| コード長 | 208 bytes |
| 記録 | |
| コンパイル時間 | 3 ms |
| コンパイル使用メモリ | 6,272 KB |
| 実行使用メモリ | 48,756 KB |
| 最終ジャッジ日時 | 2026-09-03 13:53:21 |
| 合計ジャッジ時間 | 4,081 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 10 |
ソースコード
function Main(input) {
const s = input.replace("\n", "");
const regexp = /\(.*\)/;
let ans = s.replace(regexp, "@");
console.log(ans);
}
Main(require("fs").readFileSync("/dev/stdin", "utf8"));