結果

問題 No.739 大事なことなので2度言います
ユーザー funakoshifunakoshi
提出日時 2019-07-01 13:57:55
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 741 bytes
コンパイル時間 1,939 ms
コンパイル使用メモリ 105,636 KB
実行使用メモリ 26,608 KB
最終ジャッジ日時 2024-07-16 00:24:34
合計ジャッジ時間 3,002 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
26,408 KB
testcase_01 AC 30 ms
24,796 KB
testcase_02 AC 29 ms
26,288 KB
testcase_03 AC 30 ms
26,608 KB
testcase_04 AC 31 ms
26,580 KB
testcase_05 WA -
testcase_06 AC 29 ms
24,408 KB
testcase_07 AC 29 ms
24,280 KB
testcase_08 AC 30 ms
22,588 KB
testcase_09 AC 31 ms
24,876 KB
testcase_10 AC 31 ms
24,668 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;
using System.Threading.Tasks;

namespace yukicoderTest
{
    class Program
    {
        static void Main(string[] args)
        {
            string input = Console.ReadLine();
            int index = 0;

            string temp = input.Substring(0, 2);
            index = input.IndexOf(temp, 2);
            if (index != -1)
            {
                temp = input.Substring(0, index);
                input = input.Replace(temp, "");
            }
            if(input=="")
            {
                Console.WriteLine("YES");
            }
            else
            {
                Console.WriteLine("NO");
            }
        }
    }
}
0