結果

問題 No.1806 Rotating Golem
ユーザー sysnote8mainsysnote8main
提出日時 2023-05-07 20:12:46
言語 Java
(openjdk 23)
結果
WA  
実行時間 -
コード長 649 bytes
コンパイル時間 3,504 ms
コンパイル使用メモリ 86,252 KB
実行使用メモリ 57,100 KB
最終ジャッジ日時 2024-11-24 19:15:20
合計ジャッジ時間 6,290 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 104 ms
52,836 KB
testcase_01 AC 120 ms
53,900 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 117 ms
54,048 KB
testcase_07 AC 130 ms
54,268 KB
testcase_08 AC 125 ms
54,120 KB
testcase_09 AC 127 ms
54,372 KB
testcase_10 AC 105 ms
52,752 KB
testcase_11 WA -
testcase_12 AC 113 ms
54,040 KB
testcase_13 WA -
testcase_14 AC 117 ms
54,156 KB
testcase_15 AC 115 ms
53,868 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