結果
問題 | No.1806 Rotating Golem |
ユーザー | sysnote8main |
提出日時 | 2023-05-07 20:06:28 |
言語 | Java21 (openjdk 21) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,091 bytes |
コンパイル時間 | 3,625 ms |
コンパイル使用メモリ | 78,832 KB |
実行使用メモリ | 41,580 KB |
最終ジャッジ日時 | 2024-05-03 16:38:06 |
合計ジャッジ時間 | 6,274 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 108 ms
40,084 KB |
testcase_01 | AC | 113 ms
41,156 KB |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | AC | 106 ms
39,932 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | RE | - |
testcase_10 | WA | - |
testcase_11 | RE | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | AC | 113 ms
41,120 KB |
testcase_15 | AC | 107 ms
39,932 KB |
ソースコード
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); } }