結果

問題 No.1806 Rotating Golem
ユーザー sysnote8mainsysnote8main
提出日時 2023-05-07 20:07:26
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,093 bytes
コンパイル時間 3,618 ms
コンパイル使用メモリ 78,412 KB
実行使用メモリ 41,760 KB
最終ジャッジ日時 2024-05-03 16:38:27
合計ジャッジ時間 5,806 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 107 ms
41,328 KB
testcase_01 AC 117 ms
41,128 KB
testcase_02 WA -
testcase_03 AC 109 ms
40,044 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 109 ms
41,232 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 98 ms
39,808 KB
testcase_15 AC 109 ms
40,972 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayList;
import java.util.Objects;
import java.util.Scanner;
class Direction {
    ArrayList<String> Direction = new ArrayList<>();
    String nowDirection;
    public Direction(String nowDir) {
        this.nowDirection = nowDir;
        Direction.add("E");
        Direction.add("W");
        Direction.add("S");
        Direction.add("N");
    }
    String getNow() {
        return nowDirection;
    }
    String getNext() {
        return Direction.get(Direction.indexOf(nowDirection)+1%4);
    }
    void goNext() {
        this.nowDirection = Direction.get((Direction.indexOf(nowDirection)+1)%4);
    }
}
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();
        Direction dir = new Direction(a);
        int cnt = 0;
        while(!b.equals(dir.getNow())) {
            dir.goNext();
            cnt+=1;
        }
        log(cnt);
    }
}
0