結果
問題 | No.1806 Rotating Golem |
ユーザー | ccc |
提出日時 | 2022-07-27 16:18:13 |
言語 | C# (.NET 8.0.203) |
結果 |
WA
|
実行時間 | - |
コード長 | 693 bytes |
コンパイル時間 | 7,503 ms |
コンパイル使用メモリ | 168,204 KB |
実行使用メモリ | 183,076 KB |
最終ジャッジ日時 | 2024-07-17 05:13:09 |
合計ジャッジ時間 | 9,063 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 49 ms
27,008 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 48 ms
27,136 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | AC | 48 ms
27,392 KB |
testcase_13 | WA | - |
testcase_14 | AC | 49 ms
27,008 KB |
testcase_15 | AC | 47 ms
183,076 KB |
コンパイルメッセージ
復元対象のプロジェクトを決定しています... /home/judge/data/code/main.csproj を復元しました (99 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/
ソースコード
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] + 4) / 4); Console.WriteLine(ans); } } }