結果

問題 No.113 宝探し
ユーザー TatsuDXTatsuDX
提出日時 2016-09-08 23:48:41
言語 Java21
(openjdk 21)
結果
AC  
実行時間 120 ms / 5,000 ms
コード長 427 bytes
コンパイル時間 3,937 ms
コンパイル使用メモリ 74,984 KB
実行使用メモリ 41,472 KB
最終ジャッジ日時 2024-11-16 21:25:29
合計ジャッジ時間 7,561 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
41,280 KB
testcase_01 AC 113 ms
40,776 KB
testcase_02 AC 112 ms
40,892 KB
testcase_03 AC 114 ms
41,004 KB
testcase_04 AC 110 ms
40,952 KB
testcase_05 AC 106 ms
40,636 KB
testcase_06 AC 95 ms
39,412 KB
testcase_07 AC 114 ms
41,272 KB
testcase_08 AC 106 ms
40,568 KB
testcase_09 AC 113 ms
41,088 KB
testcase_10 AC 95 ms
40,156 KB
testcase_11 AC 107 ms
41,016 KB
testcase_12 AC 120 ms
40,984 KB
testcase_13 AC 118 ms
41,024 KB
testcase_14 AC 118 ms
41,364 KB
testcase_15 AC 117 ms
41,196 KB
testcase_16 AC 110 ms
41,472 KB
testcase_17 AC 98 ms
39,924 KB
testcase_18 AC 107 ms
41,140 KB
testcase_19 AC 112 ms
40,996 KB
testcase_20 AC 109 ms
41,048 KB
testcase_21 AC 96 ms
40,244 KB
testcase_22 AC 100 ms
39,836 KB
testcase_23 AC 110 ms
41,084 KB
testcase_24 AC 116 ms
40,832 KB
testcase_25 AC 108 ms
39,872 KB
testcase_26 AC 112 ms
41,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Test {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);

		String s = sc.next();
		double x = 0, y = 0;
		char c;
		for (int i = 0; i < s.length(); i++) {
			c = s.charAt(i);
			if (c == 'W') {
				x++;
			} else if (c == 'E') {
				x--;
			} else if (c == 'N') {
				y++;
			} else {
				y--;
			}
		}
		System.out.println(Math.sqrt(x * x + y * y));
	}
}
0