結果

問題 No.739 大事なことなので2度言います
ユーザー funakoshi
提出日時 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
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 6 WA * 1
権限があれば一括ダウンロードができます
コンパイルメッセージ
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