結果

問題 No.1806 Rotating Golem
ユーザー cccccc
提出日時 2022-07-27 16:11:12
言語 C#
(.NET 8.0.203)
結果
WA  
実行時間 -
コード長 674 bytes
コンパイル時間 18,200 ms
コンパイル使用メモリ 145,692 KB
実行使用メモリ 162,212 KB
最終ジャッジ日時 2023-09-24 04:50:08
合計ジャッジ時間 11,615 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
26,656 KB
testcase_01 AC 42 ms
26,220 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 42 ms
26,304 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 44 ms
26,852 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 42 ms
26,452 KB
testcase_15 AC 42 ms
162,212 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  Determining projects to restore...
  Restored /home/judge/data/code/main.csproj (in 122 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; // 宣言

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

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

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