結果

問題 No.138 化石のバージョン
ユーザー fujitafujita
提出日時 2023-05-11 13:29:03
言語 C#
(.NET 8.0.203)
結果
RE  
実行時間 -
コード長 2,021 bytes
コンパイル時間 7,419 ms
コンパイル使用メモリ 166,572 KB
実行使用メモリ 183,468 KB
最終ジャッジ日時 2024-05-05 14:05:19
合計ジャッジ時間 10,958 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
27,264 KB
testcase_01 AC 40 ms
27,392 KB
testcase_02 AC 40 ms
27,392 KB
testcase_03 RE -
testcase_04 AC 42 ms
27,100 KB
testcase_05 AC 40 ms
27,648 KB
testcase_06 AC 40 ms
27,008 KB
testcase_07 AC 41 ms
27,392 KB
testcase_08 AC 42 ms
27,136 KB
testcase_09 AC 40 ms
27,264 KB
testcase_10 AC 40 ms
27,264 KB
testcase_11 AC 39 ms
27,008 KB
testcase_12 WA -
testcase_13 AC 39 ms
27,264 KB
testcase_14 WA -
testcase_15 AC 39 ms
27,244 KB
testcase_16 AC 43 ms
27,264 KB
testcase_17 AC 44 ms
27,132 KB
testcase_18 AC 40 ms
27,520 KB
testcase_19 AC 40 ms
27,648 KB
testcase_20 RE -
testcase_21 AC 47 ms
27,648 KB
testcase_22 AC 42 ms
27,264 KB
testcase_23 AC 40 ms
27,392 KB
testcase_24 AC 39 ms
27,392 KB
testcase_25 AC 39 ms
27,264 KB
testcase_26 AC 42 ms
27,136 KB
testcase_27 AC 41 ms
27,264 KB
testcase_28 AC 41 ms
27,244 KB
testcase_29 WA -
testcase_30 AC 43 ms
27,136 KB
testcase_31 WA -
testcase_32 AC 45 ms
27,256 KB
testcase_33 WA -
testcase_34 AC 40 ms
27,128 KB
testcase_35 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (95 ms)。
MSBuild のバージョン 17.9.6+a4ecab324 (.NET)
/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 < s.Length; m++)
            {
                if (list[x] == list2[x])
                {
                    list.Remove(list[x]);
                    list2.Remove(list2[x]);
                    
                }
                else if(!(list[m] == list2[m]))
                {
                    break;
                }
            }

            if (list.Count == 0 && list2.Count == 0)
            {
                Console.WriteLine("YES");
            }
            else if (list.Count == 0 && list2.Count > 0)
            {
                Console.WriteLine("NO");
            }
            else if (list.Count > 0 && list2.Count == 0)
            {
                Console.WriteLine("YES");
            }
            else 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("NO");
                }
                else if (list[0] > list2[0])
                {
                    Console.WriteLine("YES");
                }
                
            }
        }
    }
}
0