結果

問題 No.1806 Rotating Golem
ユーザー sysnote8mainsysnote8main
提出日時 2023-05-07 20:12:46
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 649 bytes
コンパイル時間 3,885 ms
コンパイル使用メモリ 87,772 KB
実行使用メモリ 55,244 KB
最終ジャッジ日時 2024-05-03 16:41:14
合計ジャッジ時間 6,741 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
53,700 KB
testcase_01 AC 126 ms
54,168 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 126 ms
54,048 KB
testcase_07 AC 126 ms
54,112 KB
testcase_08 AC 126 ms
54,120 KB
testcase_09 AC 128 ms
54,028 KB
testcase_10 AC 125 ms
54,044 KB
testcase_11 WA -
testcase_12 AC 126 ms
54,216 KB
testcase_13 WA -
testcase_14 AC 123 ms
54,116 KB
testcase_15 AC 125 ms
54,332 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayList;
import java.util.Scanner;

public class Rotating_Golem_1806 {
    public static void log(Object obj) {
        System.out.println(obj.toString());
    }
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        String a = sc.next();
        String b = sc.next();
        ArrayList<String> dirs = new ArrayList<>();
        dirs.add("E");
        dirs.add("S");
        dirs.add("W");
        dirs.add("N");
        int p = dirs.indexOf(a);
        int q = dirs.indexOf(b);
        if((q-p)>=0) {
            log(q-p);
        } else {
            log(b+(3-p)+1);
        }
    }
}
0