結果

問題 No.113 宝探し
ユーザー Natsume-MNatsume-M
提出日時 2016-12-09 19:03:00
言語 Java21
(openjdk 21)
結果
AC  
実行時間 115 ms / 5,000 ms
コード長 403 bytes
コンパイル時間 1,686 ms
コンパイル使用メモリ 73,980 KB
実行使用メモリ 41,656 KB
最終ジャッジ日時 2024-04-28 07:52:45
合計ジャッジ時間 5,294 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 104 ms
40,928 KB
testcase_01 AC 105 ms
40,996 KB
testcase_02 AC 115 ms
41,152 KB
testcase_03 AC 103 ms
41,180 KB
testcase_04 AC 109 ms
41,656 KB
testcase_05 AC 101 ms
41,172 KB
testcase_06 AC 97 ms
40,000 KB
testcase_07 AC 112 ms
40,848 KB
testcase_08 AC 96 ms
40,224 KB
testcase_09 AC 92 ms
40,312 KB
testcase_10 AC 102 ms
40,800 KB
testcase_11 AC 101 ms
41,032 KB
testcase_12 AC 90 ms
40,024 KB
testcase_13 AC 101 ms
41,004 KB
testcase_14 AC 94 ms
40,032 KB
testcase_15 AC 107 ms
41,184 KB
testcase_16 AC 102 ms
40,972 KB
testcase_17 AC 88 ms
39,788 KB
testcase_18 AC 109 ms
41,100 KB
testcase_19 AC 101 ms
40,992 KB
testcase_20 AC 105 ms
40,804 KB
testcase_21 AC 103 ms
41,180 KB
testcase_22 AC 100 ms
41,196 KB
testcase_23 AC 93 ms
40,300 KB
testcase_24 AC 105 ms
41,264 KB
testcase_25 AC 93 ms
40,340 KB
testcase_26 AC 112 ms
40,776 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