結果

問題 No.113 宝探し
ユーザー rf141rf141
提出日時 2015-08-10 02:56:59
言語 Java21
(openjdk 21)
結果
AC  
実行時間 112 ms / 5,000 ms
コード長 509 bytes
コンパイル時間 3,853 ms
コンパイル使用メモリ 75,376 KB
実行使用メモリ 41,420 KB
最終ジャッジ日時 2024-11-16 20:58:47
合計ジャッジ時間 6,447 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 105 ms
41,420 KB
testcase_01 AC 90 ms
39,936 KB
testcase_02 AC 102 ms
40,788 KB
testcase_03 AC 95 ms
39,828 KB
testcase_04 AC 103 ms
40,872 KB
testcase_05 AC 106 ms
41,196 KB
testcase_06 AC 111 ms
41,188 KB
testcase_07 AC 111 ms
41,128 KB
testcase_08 AC 101 ms
40,684 KB
testcase_09 AC 111 ms
41,088 KB
testcase_10 AC 105 ms
41,036 KB
testcase_11 AC 112 ms
41,260 KB
testcase_12 AC 102 ms
40,536 KB
testcase_13 AC 102 ms
40,788 KB
testcase_14 AC 105 ms
41,004 KB
testcase_15 AC 94 ms
39,844 KB
testcase_16 AC 90 ms
39,564 KB
testcase_17 AC 111 ms
41,088 KB
testcase_18 AC 110 ms
40,860 KB
testcase_19 AC 103 ms
40,724 KB
testcase_20 AC 94 ms
40,012 KB
testcase_21 AC 101 ms
40,832 KB
testcase_22 AC 109 ms
40,984 KB
testcase_23 AC 97 ms
40,436 KB
testcase_24 AC 101 ms
40,936 KB
testcase_25 AC 102 ms
40,832 KB
testcase_26 AC 105 ms
41,100 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
public class searchBox{
	public static void main(String... args){
		Scanner scan = new Scanner(System.in);
		String point = scan.next();
		DoSearch(point);
	}
	public static void DoSearch(String point){
		double x=0,y=0;
		for(int i = 0; i < point.length(); i++){
			String now = point.substring(i,i+1);
			if(now.equals("N")){
				y++;
			}else if(now.equals("E")){
				x++;
			}else if(now.equals("W")){
				x--;
			}else{
				y--;
			}
		}
		System.out.println(Math.sqrt(x*x+y*y));
	}
}
0