結果

問題 No.113 宝探し
ユーザー mits58mits58
提出日時 2016-07-02 00:54:15
言語 Java21
(openjdk 21)
結果
AC  
実行時間 119 ms / 5,000 ms
コード長 403 bytes
コンパイル時間 2,020 ms
コンパイル使用メモリ 74,088 KB
実行使用メモリ 41,228 KB
最終ジャッジ日時 2024-11-16 21:20:17
合計ジャッジ時間 5,849 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
40,980 KB
testcase_01 AC 100 ms
40,396 KB
testcase_02 AC 98 ms
40,164 KB
testcase_03 AC 111 ms
41,164 KB
testcase_04 AC 103 ms
39,936 KB
testcase_05 AC 116 ms
41,116 KB
testcase_06 AC 110 ms
40,908 KB
testcase_07 AC 117 ms
41,036 KB
testcase_08 AC 108 ms
41,208 KB
testcase_09 AC 105 ms
40,832 KB
testcase_10 AC 105 ms
40,600 KB
testcase_11 AC 93 ms
40,004 KB
testcase_12 AC 104 ms
41,080 KB
testcase_13 AC 113 ms
40,760 KB
testcase_14 AC 106 ms
40,852 KB
testcase_15 AC 111 ms
41,148 KB
testcase_16 AC 110 ms
40,984 KB
testcase_17 AC 95 ms
39,936 KB
testcase_18 AC 101 ms
40,960 KB
testcase_19 AC 105 ms
40,916 KB
testcase_20 AC 101 ms
40,968 KB
testcase_21 AC 107 ms
40,732 KB
testcase_22 AC 105 ms
40,972 KB
testcase_23 AC 98 ms
39,936 KB
testcase_24 AC 102 ms
40,424 KB
testcase_25 AC 109 ms
41,228 KB
testcase_26 AC 119 ms
41,116 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main{
	public static void main(String[] args){
		Scanner sc=new Scanner(System.in);
		while(sc.hasNext()){
			double x=0,y=0;
			String str=sc.next();
			for(int i=0;i<str.length();i++){
				if(str.charAt(i)=='N') y++;
				else if(str.charAt(i)=='E') x++;
				else if(str.charAt(i)=='W') x--;
				else y--;
			}
			System.out.println(Math.sqrt(x*x+y*y));
		}
	}
}
0