結果

問題 No.113 宝探し
ユーザー YOSHIYOSHI
提出日時 2021-02-28 00:11:43
言語 Java21
(openjdk 21)
結果
AC  
実行時間 53 ms / 5,000 ms
コード長 592 bytes
コンパイル時間 3,126 ms
コンパイル使用メモリ 74,996 KB
実行使用メモリ 37,500 KB
最終ジャッジ日時 2024-10-02 18:06:04
合計ジャッジ時間 5,259 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
36,728 KB
testcase_01 AC 49 ms
36,964 KB
testcase_02 AC 50 ms
37,372 KB
testcase_03 AC 50 ms
37,080 KB
testcase_04 AC 51 ms
37,196 KB
testcase_05 AC 48 ms
37,204 KB
testcase_06 AC 49 ms
37,240 KB
testcase_07 AC 51 ms
37,376 KB
testcase_08 AC 50 ms
37,240 KB
testcase_09 AC 49 ms
37,132 KB
testcase_10 AC 51 ms
37,236 KB
testcase_11 AC 49 ms
36,992 KB
testcase_12 AC 50 ms
36,988 KB
testcase_13 AC 52 ms
36,832 KB
testcase_14 AC 51 ms
37,244 KB
testcase_15 AC 51 ms
37,276 KB
testcase_16 AC 50 ms
37,144 KB
testcase_17 AC 50 ms
37,040 KB
testcase_18 AC 49 ms
36,876 KB
testcase_19 AC 50 ms
37,272 KB
testcase_20 AC 50 ms
37,324 KB
testcase_21 AC 50 ms
37,284 KB
testcase_22 AC 50 ms
37,500 KB
testcase_23 AC 49 ms
37,040 KB
testcase_24 AC 53 ms
37,208 KB
testcase_25 AC 53 ms
36,836 KB
testcase_26 AC 53 ms
37,080 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

public class No00000113_Main2 {

	public static void main(String[] args) throws IOException {

		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));

		String[] arr = br.readLine().split("");
		int x = 0;
		int y = 0;
		for(String s : arr) {
			switch(s) {
			case "N":
				y++;
				break;
			case "E":
				x++;
				break;
			case "W":
				x--;
				break;
			case "S":
				y--;
				break;
			default:
				break;
			}
		}

		System.out.println(Math.sqrt(x * x + y * y));

	}

}
0