結果

問題 No.113 宝探し
ユーザー Natsume-MNatsume-M
提出日時 2016-12-09 19:03:00
言語 Java21
(openjdk 21)
結果
AC  
実行時間 118 ms / 5,000 ms
コード長 403 bytes
コンパイル時間 1,930 ms
コンパイル使用メモリ 74,128 KB
実行使用メモリ 41,436 KB
最終ジャッジ日時 2024-11-16 21:29:26
合計ジャッジ時間 5,643 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 106 ms
40,672 KB
testcase_01 AC 106 ms
40,308 KB
testcase_02 AC 118 ms
41,316 KB
testcase_03 AC 106 ms
40,472 KB
testcase_04 AC 95 ms
39,712 KB
testcase_05 AC 105 ms
40,736 KB
testcase_06 AC 103 ms
40,988 KB
testcase_07 AC 108 ms
41,144 KB
testcase_08 AC 117 ms
41,096 KB
testcase_09 AC 116 ms
41,072 KB
testcase_10 AC 114 ms
41,112 KB
testcase_11 AC 95 ms
40,084 KB
testcase_12 AC 97 ms
40,044 KB
testcase_13 AC 95 ms
39,712 KB
testcase_14 AC 99 ms
40,232 KB
testcase_15 AC 99 ms
40,196 KB
testcase_16 AC 100 ms
39,980 KB
testcase_17 AC 109 ms
40,964 KB
testcase_18 AC 106 ms
41,080 KB
testcase_19 AC 98 ms
40,260 KB
testcase_20 AC 108 ms
39,968 KB
testcase_21 AC 92 ms
39,848 KB
testcase_22 AC 108 ms
41,048 KB
testcase_23 AC 103 ms
40,784 KB
testcase_24 AC 107 ms
41,116 KB
testcase_25 AC 106 ms
39,896 KB
testcase_26 AC 109 ms
41,436 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
class y113 {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		String s = sc.next();
		double x = 0, y = 0;
		for (int i=0; i<s.length(); i++) {
			if	(s.charAt(i) == 'N')	y--;
			else if	(s.charAt(i) == 'E')	x++;
			else if	(s.charAt(i) == 'W')	x--;
			else if	(s.charAt(i) == 'S')	y++;
		}
		System.out.println(Math.hypot(x, y));
		sc.close();
	}
}
0