結果

問題 No.113 宝探し
ユーザー YOSHIYOSHI
提出日時 2021-02-28 00:08:35
言語 Java21
(openjdk 21)
結果
AC  
実行時間 54 ms / 5,000 ms
コード長 632 bytes
コンパイル時間 3,047 ms
コンパイル使用メモリ 75,220 KB
実行使用メモリ 50,336 KB
最終ジャッジ日時 2024-10-02 18:05:46
合計ジャッジ時間 5,543 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
50,108 KB
testcase_01 AC 53 ms
50,032 KB
testcase_02 AC 52 ms
50,048 KB
testcase_03 AC 53 ms
50,268 KB
testcase_04 AC 53 ms
50,048 KB
testcase_05 AC 53 ms
50,288 KB
testcase_06 AC 53 ms
49,900 KB
testcase_07 AC 52 ms
50,308 KB
testcase_08 AC 52 ms
49,988 KB
testcase_09 AC 53 ms
50,060 KB
testcase_10 AC 52 ms
49,904 KB
testcase_11 AC 51 ms
50,040 KB
testcase_12 AC 52 ms
49,624 KB
testcase_13 AC 51 ms
50,060 KB
testcase_14 AC 52 ms
50,012 KB
testcase_15 AC 52 ms
50,124 KB
testcase_16 AC 52 ms
50,280 KB
testcase_17 AC 52 ms
49,976 KB
testcase_18 AC 53 ms
49,740 KB
testcase_19 AC 53 ms
49,768 KB
testcase_20 AC 53 ms
50,288 KB
testcase_21 AC 53 ms
50,336 KB
testcase_22 AC 54 ms
50,152 KB
testcase_23 AC 51 ms
49,780 KB
testcase_24 AC 52 ms
50,220 KB
testcase_25 AC 51 ms
50,208 KB
testcase_26 AC 54 ms
50,040 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class No00000113_Main {

	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(Math.abs(x) * Math.abs(x) + Math.abs(y) * Math.abs(y)));

	}

}
0