結果

問題 No.138 化石のバージョン
ユーザー fujitafujita
提出日時 2023-05-11 13:16:16
言語 C#
(.NET 8.0.203)
結果
WA  
実行時間 -
コード長 1,775 bytes
コンパイル時間 19,638 ms
コンパイル使用メモリ 167,444 KB
実行使用メモリ 181,912 KB
最終ジャッジ日時 2024-05-05 13:58:59
合計ジャッジ時間 11,615 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 47 ms
27,392 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 47 ms
27,520 KB
testcase_13 WA -
testcase_14 AC 47 ms
27,136 KB
testcase_15 WA -
testcase_16 AC 47 ms
27,392 KB
testcase_17 AC 47 ms
27,228 KB
testcase_18 AC 46 ms
27,108 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 47 ms
27,264 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 47 ms
27,520 KB
testcase_30 WA -
testcase_31 AC 46 ms
27,392 KB
testcase_32 WA -
testcase_33 AC 48 ms
27,136 KB
testcase_34 WA -
testcase_35 AC 49 ms
181,912 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (103 ms)。
MSBuild のバージョン 17.9.6+a4ecab324 (.NET)
/home/judge/data/code/Main.cs(16,17): warning CS0219: 変数 'x' は割り当てられていますが、その値は使用されていません [/home/judge/data/code/main.csproj]
/home/judge/data/code/Main.cs(16,25): warning CS0219: 変数 'tencount' は割り当てられていますが、その値は使用されていません [/home/judge/data/code/main.csproj]
  main -> /home/judge/data/code/bin/Release/net8.0/main.dll
  main -> /home/judge/data/code/bin/Release/net8.0/publish/

ソースコード

diff #

using System.Collections.Generic;
using System;
using System.Drawing;
namespace yukicoder
{
    class Program
    {

        static void Main(string[] args)
        {
            var s = Console.ReadLine();
            var str = Console.ReadLine();
            
            List<char> list = new List<char>(s.Length);
            List<char> list2 = new List<char>(str.Length);
            int x = 0 , tencount = 0;

            

            for (int i = 0; i < s.Length; i++)
            {
                list.Add(s[i]);
            }

            for (int j = 0; j < str.Length; j++)
            {
                list2.Add(str[j]);
            }
           
           
            for(int m = 0; m < list.Count.CompareTo(list2.Count); m++)
            {
                if (list[m] == list2[m])
                {
                    list.Remove(list[m]);
                    list.Remove(list2[m]);
                }
                else if(!(list[m] == list2[m]))
                {
                    break;
                }
            }


            if (list[0].Equals("."))
            {
                Console.WriteLine("YES");
            }
            else if (list2[0].Equals("."))
            {
                Console.WriteLine("NO");
            }
            else if (!list[0].Equals(".") && !list2[0].Equals("."))
            {
                if (list[0] < list2[0])
                {
                    Console.WriteLine("YES");
                }
                else if (list[0] > list2[0])
                {
                    Console.WriteLine("NO");
                }
                else if (list.Count == list2.Count)
                {
                    Console.WriteLine("YES");
                }
            }
            
        }
    }
}
0