結果

問題 No.113 宝探し
ユーザー fujitafujita
提出日時 2023-05-10 15:04:00
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 49 ms / 5,000 ms
コード長 2,004 bytes
コンパイル時間 14,131 ms
コンパイル使用メモリ 167,220 KB
実行使用メモリ 183,788 KB
最終ジャッジ日時 2024-05-05 03:15:02
合計ジャッジ時間 15,859 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
29,312 KB
testcase_01 AC 44 ms
29,056 KB
testcase_02 AC 45 ms
28,928 KB
testcase_03 AC 48 ms
29,056 KB
testcase_04 AC 49 ms
28,800 KB
testcase_05 AC 48 ms
29,440 KB
testcase_06 AC 48 ms
28,800 KB
testcase_07 AC 47 ms
29,056 KB
testcase_08 AC 46 ms
29,056 KB
testcase_09 AC 44 ms
28,928 KB
testcase_10 AC 43 ms
28,672 KB
testcase_11 AC 43 ms
29,056 KB
testcase_12 AC 44 ms
29,440 KB
testcase_13 AC 43 ms
28,800 KB
testcase_14 AC 42 ms
28,800 KB
testcase_15 AC 44 ms
29,184 KB
testcase_16 AC 44 ms
28,672 KB
testcase_17 AC 42 ms
28,928 KB
testcase_18 AC 42 ms
29,184 KB
testcase_19 AC 43 ms
28,672 KB
testcase_20 AC 42 ms
29,056 KB
testcase_21 AC 44 ms
28,928 KB
testcase_22 AC 45 ms
29,032 KB
testcase_23 AC 45 ms
29,184 KB
testcase_24 AC 44 ms
28,928 KB
testcase_25 AC 47 ms
29,056 KB
testcase_26 AC 45 ms
183,788 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (135 ms)。
MSBuild のバージョン 17.9.6+a4ecab324 (.NET)
  main -> /home/judge/data/code/bin/Release/net8.0/main.dll
  main -> /home/judge/data/code/bin/Release/net8.0/publish/

ソースコード

diff #

using System;
namespace yukicoder
{
    class Program
    {

        static void Main(string[] args)
        {

            var str = Console.ReadLine();
            string[] strings = new string[str.Length];
            int sum = 0 , x = 0 , y = 0;

            for(int i = 0; i < str.Length; i++)
            {
                strings[i] = str.Substring(i, 1);
                if (strings[i] == "N")
                {
                    x++;
                }
                else if (strings[i] == "S")
                {
                    x--;
                }
                else if (strings[i] == "E")
                {
                    y++;
                }
                else if (strings[i] == "W")
                {
                    y--;
                }

            }
            if (x < 0)
            {
                x = x * -1;
            }
            if (y < 0)
            {
                y = y * -1;
            }

            sum = (x * x) + (y * y);

            double a = Math.Sqrt(sum);

            string b = a.ToString();

            string[] str2 = new string[b.Length];

            for (int i = 0; i < b.Length; i++)
            {
                str2[i] = b.Substring(i , 1);
                if (b.Substring(i, 1) == ".")
                {
                    str2[i + 1] = b.Substring(i + 1, 1);
                    str2[i + 2] = b.Substring(i + 2, 1);
                    str2[i + 3] = b.Substring(i + 3, 1);
                    str2[i + 4] = b.Substring(i + 4, 1);
                    str2[i + 5] = b.Substring(i + 5, 1);
                    if (int.Parse(b.Substring(i + 6, 1)) > 4)
                    {
                        int c = int.Parse(str2[i + 5] ) + 1;
                        str2[i + 5] = c.ToString();
                    }
                    break;
                }
                
            }
            foreach (var item in str2)
            {
                Console.Write(item);
            
            }
        }
    }
}
0