結果

問題 No.113 宝探し
ユーザー r.suzukir.suzuki
提出日時 2016-01-06 23:35:49
言語 Java21
(openjdk 21)
結果
AC  
実行時間 121 ms / 5,000 ms
コード長 504 bytes
コンパイル時間 3,006 ms
コンパイル使用メモリ 74,992 KB
実行使用メモリ 41,212 KB
最終ジャッジ日時 2024-11-16 21:06:26
合計ジャッジ時間 6,924 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
41,056 KB
testcase_01 AC 112 ms
41,132 KB
testcase_02 AC 110 ms
40,716 KB
testcase_03 AC 115 ms
41,088 KB
testcase_04 AC 111 ms
40,896 KB
testcase_05 AC 96 ms
39,744 KB
testcase_06 AC 110 ms
41,212 KB
testcase_07 AC 113 ms
40,936 KB
testcase_08 AC 113 ms
41,000 KB
testcase_09 AC 112 ms
41,004 KB
testcase_10 AC 96 ms
39,936 KB
testcase_11 AC 111 ms
41,172 KB
testcase_12 AC 118 ms
40,712 KB
testcase_13 AC 114 ms
40,980 KB
testcase_14 AC 108 ms
40,728 KB
testcase_15 AC 106 ms
40,352 KB
testcase_16 AC 101 ms
39,888 KB
testcase_17 AC 105 ms
39,944 KB
testcase_18 AC 105 ms
40,000 KB
testcase_19 AC 110 ms
41,124 KB
testcase_20 AC 107 ms
41,152 KB
testcase_21 AC 111 ms
41,088 KB
testcase_22 AC 121 ms
40,896 KB
testcase_23 AC 103 ms
39,800 KB
testcase_24 AC 108 ms
40,832 KB
testcase_25 AC 107 ms
40,424 KB
testcase_26 AC 115 ms
41,080 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

public class No_113 {
	static int X;
	static int Y;

	static void move(char c) {
		switch (c) {
		case 'N':
			Y++;
			break;
		case 'E':
			X++;
			break;
		case 'S':
			Y--;
			break;
		case 'W':
			X--;
			break;

		}
	}

	public static void main(String[] args) {
		java.util.Scanner sc = new java.util.Scanner(System.in);
		String s = sc.next();
		char[] direction = s.toCharArray();

		for (char c : direction) {
			move(c);
		}

		System.out.println(Math.sqrt(X * X + Y * Y));
		sc.close();

	}

}
0