結果

問題 No.292 芸名
ユーザー nanophoto12nanophoto12
提出日時 2015-12-06 14:29:31
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 59 ms / 2,000 ms
コード長 531 bytes
コンパイル時間 2,122 ms
コンパイル使用メモリ 102,480 KB
実行使用メモリ 22,780 KB
最終ジャッジ日時 2023-10-12 16:42:28
合計ジャッジ時間 3,828 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 58 ms
22,780 KB
testcase_01 AC 58 ms
22,616 KB
testcase_02 AC 59 ms
20,636 KB
testcase_03 AC 58 ms
20,720 KB
testcase_04 AC 58 ms
20,600 KB
testcase_05 AC 57 ms
20,636 KB
testcase_06 AC 59 ms
22,708 KB
testcase_07 AC 59 ms
20,800 KB
testcase_08 AC 59 ms
22,776 KB
testcase_09 AC 59 ms
20,644 KB
testcase_10 AC 59 ms
20,720 KB
testcase_11 AC 58 ms
20,628 KB
testcase_12 AC 58 ms
22,688 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace No292
{
	class MainClass
	{
		public static void Main (string[] args)
		{
			var line = Console.ReadLine ().Split(' ');
			var s = line [0];
			var t = Convert.ToInt32(line [1]);
			var u = Convert.ToInt32(line [2]);

			StringBuilder builder = new StringBuilder ();
			for (int i = 0; i < s.Length; i++) {
				if (i != t && i != u) {
					builder.Append ((char)s [i]);
				}
			}
			Console.WriteLine (builder.ToString ());
		}
	}
}
0