結果

問題 No.113 宝探し
ユーザー jimanojimano
提出日時 2018-01-18 19:46:52
言語 Java21
(openjdk 21)
結果
AC  
実行時間 51 ms / 5,000 ms
コード長 929 bytes
コンパイル時間 3,034 ms
コンパイル使用メモリ 77,380 KB
実行使用メモリ 37,536 KB
最終ジャッジ日時 2024-11-16 21:46:50
合計ジャッジ時間 5,168 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
37,004 KB
testcase_01 AC 50 ms
37,116 KB
testcase_02 AC 48 ms
37,408 KB
testcase_03 AC 50 ms
37,024 KB
testcase_04 AC 50 ms
37,536 KB
testcase_05 AC 50 ms
37,016 KB
testcase_06 AC 49 ms
37,344 KB
testcase_07 AC 49 ms
37,396 KB
testcase_08 AC 51 ms
36,896 KB
testcase_09 AC 50 ms
37,500 KB
testcase_10 AC 51 ms
37,416 KB
testcase_11 AC 49 ms
37,256 KB
testcase_12 AC 49 ms
37,332 KB
testcase_13 AC 48 ms
37,376 KB
testcase_14 AC 48 ms
37,312 KB
testcase_15 AC 49 ms
37,124 KB
testcase_16 AC 49 ms
37,324 KB
testcase_17 AC 48 ms
37,332 KB
testcase_18 AC 49 ms
37,196 KB
testcase_19 AC 49 ms
37,308 KB
testcase_20 AC 50 ms
37,400 KB
testcase_21 AC 48 ms
37,532 KB
testcase_22 AC 48 ms
37,244 KB
testcase_23 AC 49 ms
37,376 KB
testcase_24 AC 49 ms
37,528 KB
testcase_25 AC 49 ms
37,220 KB
testcase_26 AC 50 ms
37,024 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package me.yukicoder.lv1;

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.math.BigDecimal;
import java.math.RoundingMode;

public class No0113 {
	public static void main(String[] args) {
		try (BufferedReader br = new BufferedReader(new InputStreamReader(System.in))) {
			char[] array = br.readLine().toCharArray();
			double[] point = new double[2];

			for (char c : array) {
				if (c == 'N') {
					point[0] += 1.0;
				} else if (c == 'E') {
					point[1] += 1.0;
				} else if (c == 'W') {
					point[1] -= 1.0;
				} else if (c == 'S') {
					point[0] -= 1.0;
				}
			}
			double d = Math.pow(Math.abs(point[0]), 2) + Math.pow(Math.abs(point[1]), 2);
			double dist = Math.sqrt(d);
			BigDecimal ans = new BigDecimal(dist);
			ans = ans.setScale(5, RoundingMode.HALF_DOWN);
			System.out.println(ans);
		} catch (IOException e) {
			e.printStackTrace();
		}
	}
}
0