結果

問題 No.292 芸名
ユーザー pirorirori_n712pirorirori_n712
提出日時 2018-07-04 00:56:00
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 571 bytes
コンパイル時間 805 ms
コンパイル使用メモリ 109,728 KB
実行使用メモリ 26,256 KB
最終ジャッジ日時 2024-07-01 02:05:52
合計ジャッジ時間 1,667 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 25 ms
23,900 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 24 ms
23,908 KB
testcase_08 AC 25 ms
23,772 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;

class No292{
    static void Main(){
        var s=Console.ReadLine().Split(' ');
        if(s[1]==s[2]){
            var i=Int32.Parse(s[1]);
            Console.WriteLine(s[0].Remove(i,1));
        }else{
            var i=Int32.Parse(s[1]);
            var j=Int32.Parse(s[2]);
            string a;
            if(i>j){
                a=s[0].Remove(j,1);
                a=s[0].Remove(i-1,1);
            }else{
                a=s[0].Remove(i,1);
                a=s[0].Remove(j-1,1);
            }
            Console.WriteLine(a);
        }
    }
}
0