結果

問題 No.113 宝探し
ユーザー Tsukasa_TypeTsukasa_Type
提出日時 2018-02-09 19:57:35
言語 Java21
(openjdk 21)
結果
AC  
実行時間 112 ms / 5,000 ms
コード長 428 bytes
コンパイル時間 1,847 ms
コンパイル使用メモリ 74,236 KB
実行使用メモリ 41,216 KB
最終ジャッジ日時 2024-11-16 21:47:28
合計ジャッジ時間 5,701 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 102 ms
39,692 KB
testcase_01 AC 100 ms
39,848 KB
testcase_02 AC 108 ms
40,824 KB
testcase_03 AC 104 ms
39,944 KB
testcase_04 AC 112 ms
41,080 KB
testcase_05 AC 111 ms
40,320 KB
testcase_06 AC 111 ms
41,160 KB
testcase_07 AC 107 ms
40,604 KB
testcase_08 AC 101 ms
40,172 KB
testcase_09 AC 102 ms
40,440 KB
testcase_10 AC 95 ms
39,912 KB
testcase_11 AC 112 ms
41,112 KB
testcase_12 AC 110 ms
40,948 KB
testcase_13 AC 107 ms
40,120 KB
testcase_14 AC 101 ms
40,248 KB
testcase_15 AC 109 ms
40,828 KB
testcase_16 AC 112 ms
40,872 KB
testcase_17 AC 99 ms
39,848 KB
testcase_18 AC 98 ms
39,808 KB
testcase_19 AC 99 ms
39,460 KB
testcase_20 AC 100 ms
40,144 KB
testcase_21 AC 98 ms
39,980 KB
testcase_22 AC 110 ms
40,976 KB
testcase_23 AC 109 ms
40,880 KB
testcase_24 AC 108 ms
41,216 KB
testcase_25 AC 102 ms
40,364 KB
testcase_26 AC 99 ms
39,804 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public 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 if (s.charAt(i)=='S') {y--;}
		}
		double ans = Math.sqrt(x*x+y*y);
		System.out.println(ans);
	}
}
0