結果

問題 No.113 宝探し
ユーザー kano_townkano_town
提出日時 2014-12-31 23:50:39
言語 Java21
(openjdk 21)
結果
AC  
実行時間 115 ms / 5,000 ms
コード長 435 bytes
コンパイル時間 2,963 ms
コンパイル使用メモリ 80,344 KB
実行使用メモリ 41,336 KB
最終ジャッジ日時 2024-11-16 20:38:18
合計ジャッジ時間 6,565 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 94 ms
39,712 KB
testcase_01 AC 89 ms
39,736 KB
testcase_02 AC 102 ms
40,836 KB
testcase_03 AC 90 ms
40,184 KB
testcase_04 AC 113 ms
41,168 KB
testcase_05 AC 108 ms
40,828 KB
testcase_06 AC 97 ms
39,852 KB
testcase_07 AC 103 ms
40,780 KB
testcase_08 AC 107 ms
41,064 KB
testcase_09 AC 115 ms
40,956 KB
testcase_10 AC 113 ms
41,056 KB
testcase_11 AC 97 ms
40,164 KB
testcase_12 AC 105 ms
40,828 KB
testcase_13 AC 105 ms
40,932 KB
testcase_14 AC 92 ms
39,828 KB
testcase_15 AC 89 ms
39,672 KB
testcase_16 AC 110 ms
40,780 KB
testcase_17 AC 110 ms
40,696 KB
testcase_18 AC 97 ms
39,748 KB
testcase_19 AC 114 ms
41,180 KB
testcase_20 AC 96 ms
39,852 KB
testcase_21 AC 111 ms
41,336 KB
testcase_22 AC 111 ms
40,932 KB
testcase_23 AC 99 ms
39,780 KB
testcase_24 AC 103 ms
40,912 KB
testcase_25 AC 102 ms
40,868 KB
testcase_26 AC 96 ms
40,164 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class Yukicoder113 {
	public static void main(String[] args) {
		String s = new Scanner(System.in).next();
		double ew = 0, ns = 0;
		for (int i = 0; i < s.length(); i++) {
			switch(s.charAt(i)) {
				case 'N':
					ns++;
					break;
				case 'E':
					ew++;
					break;
				case 'W':
					ew--;
					break;
				case 'S':
					ns--;
					break;
			}
		}
		System.out.println(Math.hypot(ns, ew));
	}
}
0