結果

問題 No.1806 Rotating Golem
ユーザー cccccc
提出日時 2022-07-27 16:13:45
言語 C#
(.NET 8.0.203)
結果
WA  
実行時間 -
コード長 683 bytes
コンパイル時間 16,990 ms
コンパイル使用メモリ 147,560 KB
実行使用メモリ 165,960 KB
最終ジャッジ日時 2023-09-24 04:52:57
合計ジャッジ時間 18,702 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 42 ms
26,420 KB
testcase_02 AC 40 ms
28,736 KB
testcase_03 AC 41 ms
26,592 KB
testcase_04 AC 39 ms
26,484 KB
testcase_05 AC 41 ms
26,428 KB
testcase_06 AC 36 ms
26,308 KB
testcase_07 AC 40 ms
28,672 KB
testcase_08 AC 38 ms
26,364 KB
testcase_09 AC 38 ms
26,572 KB
testcase_10 AC 40 ms
26,636 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 37 ms
26,204 KB
testcase_15 AC 36 ms
165,960 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  Determining projects to restore...
  Restored /home/judge/data/code/main.csproj (in 225 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", 1 },
            {"E", 2 },
            {"S", 3 },
            {"W", 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