結果

問題 No.113 宝探し
ユーザー koukonkokoukonko
提出日時 2015-12-11 22:06:40
言語 Java21
(openjdk 21)
結果
AC  
実行時間 47 ms / 5,000 ms
コード長 782 bytes
コンパイル時間 2,083 ms
コンパイル使用メモリ 73,448 KB
実行使用メモリ 36,988 KB
最終ジャッジ日時 2024-11-16 21:04:36
合計ジャッジ時間 4,109 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
36,656 KB
testcase_01 AC 43 ms
36,908 KB
testcase_02 AC 43 ms
36,468 KB
testcase_03 AC 42 ms
36,812 KB
testcase_04 AC 46 ms
36,812 KB
testcase_05 AC 43 ms
36,812 KB
testcase_06 AC 43 ms
36,668 KB
testcase_07 AC 42 ms
36,628 KB
testcase_08 AC 42 ms
36,704 KB
testcase_09 AC 44 ms
36,628 KB
testcase_10 AC 44 ms
36,712 KB
testcase_11 AC 46 ms
36,368 KB
testcase_12 AC 45 ms
36,616 KB
testcase_13 AC 46 ms
36,480 KB
testcase_14 AC 42 ms
36,764 KB
testcase_15 AC 42 ms
36,900 KB
testcase_16 AC 41 ms
36,512 KB
testcase_17 AC 43 ms
36,512 KB
testcase_18 AC 47 ms
36,512 KB
testcase_19 AC 42 ms
36,880 KB
testcase_20 AC 41 ms
36,880 KB
testcase_21 AC 43 ms
36,940 KB
testcase_22 AC 42 ms
36,628 KB
testcase_23 AC 42 ms
36,392 KB
testcase_24 AC 43 ms
36,824 KB
testcase_25 AC 41 ms
36,712 KB
testcase_26 AC 43 ms
36,988 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
	public static void main(String[] args) {
		BufferedReader buff = new BufferedReader(new InputStreamReader(System.in));

		try {
			String line = buff.readLine();
			int x = 0, y = 0;

			for (int i = 0; i < line.length(); ++i) {
				if (line.charAt(i) == 'N') {
					++y;
				} else if (line.charAt(i) == 'E') {
					++x;
				} else if (line.charAt(i) == 'S') {
					--y;
				} else {
					--x;
				}
			}

			double ans = Math.sqrt((Math.pow(x, 2) + Math.pow(y, 2)));

			System.out.println(ans);

		} catch (NumberFormatException e) {
			e.getStackTrace();
		} catch (IOException e) {
			e.getStackTrace();
		} catch (Exception e) {
			e.getStackTrace();
		}
	}
}
0