結果

問題 No.1806 Rotating Golem
ユーザー cccccc
提出日時 2022-07-27 16:22:03
言語 C#
(.NET 8.0.203)
結果
WA  
実行時間 -
コード長 692 bytes
コンパイル時間 7,977 ms
コンパイル使用メモリ 144,604 KB
実行使用メモリ 162,916 KB
最終ジャッジ日時 2023-09-24 05:03:17
合計ジャッジ時間 9,522 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 37 ms
26,220 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 38 ms
26,240 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 37 ms
26,516 KB
testcase_13 WA -
testcase_14 AC 42 ms
26,704 KB
testcase_15 AC 39 ms
162,916 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  Determining projects to restore...
  Restored /home/judge/data/code/main.csproj (in 134 ms).
.NET 向け Microsoft (R) Build Engine バージョン 17.0.0-preview-21470-01+cb055d28f
Copyright (C) Microsoft Corporation.All rights reserved.

  プレビュー版の .NET を使用しています。https://aka.ms/dotnet-core-preview をご覧ください
  main -> /home/judge/data/code/bin/Release/net6.0/main.dll
  main -> /home/judge/data/code/bin/Release/net6.0/publish/

ソースコード

diff #

using System;
using System.Collections.Generic;
using System.Linq;

class Program
{
    static void Main()
    {
        // 要素を作成
        var news = new Dictionary<string, int>()
        {
            {"N", 0 },
            {"E", 1 },
            {"S", 2 },
            {"W", 3 },
        };

        // 標準入力取得
        var pStart = Console.ReadLine();
        var pEnd = Console.ReadLine();

        if (pStart == pEnd)
        {
            Console.WriteLine("0");
        }
        else
        {
            // 絶対値として工程を算出
            var ans = Math.Abs((news[pStart] - news[pEnd] + 4) / 4);
            Console.WriteLine(ans);
        }
    }
}
0