結果

問題 No.113 宝探し
ユーザー YukimotoPGYukimotoPG
提出日時 2019-02-14 21:59:28
言語 Java21
(openjdk 21)
結果
AC  
実行時間 130 ms / 5,000 ms
コード長 674 bytes
コンパイル時間 3,439 ms
コンパイル使用メモリ 74,364 KB
実行使用メモリ 41,400 KB
最終ジャッジ日時 2024-11-16 22:01:44
合計ジャッジ時間 7,264 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
41,104 KB
testcase_01 AC 121 ms
41,080 KB
testcase_02 AC 114 ms
40,828 KB
testcase_03 AC 119 ms
40,884 KB
testcase_04 AC 115 ms
40,788 KB
testcase_05 AC 105 ms
39,912 KB
testcase_06 AC 117 ms
40,932 KB
testcase_07 AC 116 ms
41,088 KB
testcase_08 AC 118 ms
41,000 KB
testcase_09 AC 120 ms
41,220 KB
testcase_10 AC 119 ms
40,680 KB
testcase_11 AC 120 ms
41,024 KB
testcase_12 AC 119 ms
40,856 KB
testcase_13 AC 119 ms
41,388 KB
testcase_14 AC 107 ms
40,160 KB
testcase_15 AC 128 ms
40,964 KB
testcase_16 AC 130 ms
41,364 KB
testcase_17 AC 106 ms
39,952 KB
testcase_18 AC 123 ms
41,400 KB
testcase_19 AC 125 ms
41,184 KB
testcase_20 AC 108 ms
39,936 KB
testcase_21 AC 121 ms
41,016 KB
testcase_22 AC 107 ms
39,788 KB
testcase_23 AC 127 ms
41,124 KB
testcase_24 AC 122 ms
40,964 KB
testcase_25 AC 116 ms
40,992 KB
testcase_26 AC 121 ms
40,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class Main {
	static Scanner sc = new Scanner(System.in);
	public static void main(String[] args) {
		
		String s = sc.next();
		int x = 0; int y = 0;
		for (int i=0; i<s.length(); i++) {
			if (s.charAt(i) == 'N') y++;
			else if (s.charAt(i) == 'E') x++;
			else if (s.charAt(i) == 'W') x--;
			else y--;
		}
		System.out.println(calcEuclidDistance(0,0,x,y));
		
		
	}
	
	static int calcManhatDistance (int x1, int y1, int x2, int y2) {
		int d = Math.abs(x1-x2)+Math.abs(y1-y2);
		return d;
	}
	static double calcEuclidDistance (double x1, double y1, double x2, double y2) {
		double d = Math.sqrt((x2-x1)*(x2-x1)+(y2-y1)*(y2-y1));
		return d;
	}
	
}
0