結果

問題 No.113 宝探し
ユーザー ffmm00ffmm00
提出日時 2015-06-15 17:15:44
言語 Java21
(openjdk 21)
結果
AC  
実行時間 120 ms / 5,000 ms
コード長 491 bytes
コンパイル時間 3,553 ms
コンパイル使用メモリ 79,828 KB
実行使用メモリ 41,656 KB
最終ジャッジ日時 2024-11-16 20:57:52
合計ジャッジ時間 6,914 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
40,824 KB
testcase_01 AC 108 ms
41,276 KB
testcase_02 AC 113 ms
40,788 KB
testcase_03 AC 99 ms
40,056 KB
testcase_04 AC 101 ms
40,400 KB
testcase_05 AC 112 ms
40,968 KB
testcase_06 AC 113 ms
40,848 KB
testcase_07 AC 99 ms
40,132 KB
testcase_08 AC 113 ms
40,856 KB
testcase_09 AC 114 ms
41,072 KB
testcase_10 AC 106 ms
40,476 KB
testcase_11 AC 109 ms
40,820 KB
testcase_12 AC 100 ms
40,096 KB
testcase_13 AC 118 ms
41,324 KB
testcase_14 AC 111 ms
40,992 KB
testcase_15 AC 113 ms
40,856 KB
testcase_16 AC 103 ms
39,904 KB
testcase_17 AC 111 ms
40,936 KB
testcase_18 AC 112 ms
41,136 KB
testcase_19 AC 114 ms
40,912 KB
testcase_20 AC 101 ms
40,040 KB
testcase_21 AC 105 ms
39,712 KB
testcase_22 AC 120 ms
41,656 KB
testcase_23 AC 109 ms
40,836 KB
testcase_24 AC 117 ms
41,268 KB
testcase_25 AC 112 ms
41,184 KB
testcase_26 AC 101 ms
40,120 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class N113 {

	public static void main(String[] args) {

		Scanner sca = new Scanner(System.in);

		char[] d = sca.next().toCharArray();
		double A = 0;
		double x = 0;
		double y = 0;

		for (int i = 0; i < d.length; i++) {
			switch (d[i]) {
			case 'N':
				y++;
				break;
			case 'E':
				x++;
				break;
			case 'W':
				x--;
				break;
			case 'S':
				y--;
				break;
			}
		}

		A = Math.sqrt(x * x + y * y);

		System.out.printf("%.6f", A);

	}

}
0