結果
| 問題 | No.2041 E-mail Address |
| コンテスト | |
| ユーザー |
gru66y
|
| 提出日時 | 2022-08-31 00:02:06 |
| 言語 | C# (.NET 10.0.201) |
| 結果 |
AC
|
| 実行時間 | 46 ms / 2,000 ms |
| コード長 | 471 bytes |
| 記録 | |
| コンパイル時間 | 13,349 ms |
| コンパイル使用メモリ | 173,584 KB |
| 実行使用メモリ | 192,956 KB |
| 最終ジャッジ日時 | 2026-05-08 00:58:13 |
| 合計ジャッジ時間 | 19,498 ms |
|
ジャッジサーバーID (参考情報) |
judge1_1 / judge3_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 10 |
コンパイルメッセージ
復元対象のプロジェクトを決定しています... /home/judge/data/code/main.csproj を復元しました (127 ミリ秒)。 main -> /home/judge/data/code/bin/Release/net10.0/main.dll main -> /home/judge/data/code/bin/Release/net10.0/publish/
ソースコード
using System;
using System.Linq;
using System.Collections;
using System.Collections.Generic;
namespace Paiza
{
static class Problem
{
static void Main (string[] args)
{
string T = Console.ReadLine();
int indexKakko = T.IndexOf('(');
int indexKokka = T.IndexOf(')');
string U = T.Substring(indexKakko, indexKokka - indexKakko + 1);
Console.WriteLine(T.Replace(U, "@"));
}
}
}
gru66y