結果

問題 No.113 宝探し
ユーザー TwinkleStar74TwinkleStar74
提出日時 2017-09-30 22:55:18
言語 Java21
(openjdk 21)
結果
AC  
実行時間 49 ms / 5,000 ms
コード長 737 bytes
コンパイル時間 2,922 ms
コンパイル使用メモリ 74,400 KB
実行使用メモリ 37,076 KB
最終ジャッジ日時 2024-11-16 21:37:37
合計ジャッジ時間 4,941 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
36,712 KB
testcase_01 AC 45 ms
37,028 KB
testcase_02 AC 46 ms
36,712 KB
testcase_03 AC 45 ms
36,684 KB
testcase_04 AC 46 ms
36,860 KB
testcase_05 AC 46 ms
36,620 KB
testcase_06 AC 44 ms
36,732 KB
testcase_07 AC 45 ms
36,816 KB
testcase_08 AC 45 ms
36,364 KB
testcase_09 AC 46 ms
36,512 KB
testcase_10 AC 48 ms
36,860 KB
testcase_11 AC 47 ms
36,948 KB
testcase_12 AC 45 ms
36,684 KB
testcase_13 AC 45 ms
36,728 KB
testcase_14 AC 45 ms
36,388 KB
testcase_15 AC 49 ms
36,488 KB
testcase_16 AC 45 ms
36,368 KB
testcase_17 AC 46 ms
36,816 KB
testcase_18 AC 47 ms
36,800 KB
testcase_19 AC 49 ms
36,388 KB
testcase_20 AC 49 ms
36,896 KB
testcase_21 AC 49 ms
36,948 KB
testcase_22 AC 46 ms
36,888 KB
testcase_23 AC 45 ms
36,512 KB
testcase_24 AC 43 ms
36,832 KB
testcase_25 AC 45 ms
36,948 KB
testcase_26 AC 45 ms
37,076 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

public class No113 {

	public static void main(String[] args) {
		try{
			BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
			String str = br.readLine();
			String[] houi = new String[str.length()];
			for(int i=0; i<str.length(); i++)
				houi[i] = String.valueOf(str.charAt(i));
			int x = 0; int y = 0;
			for(int i=0; i<houi.length ;i++){
				if(houi[i].equals("N"))
					y++;
				if(houi[i].equals("S"))
					y--;
				if(houi[i].equals("E"))
					x++;
				if(houi[i].equals("W"))
					x--;
			}
			System.out.println(Math.sqrt(Math.pow(x,2)+Math.pow(y,2)));
		}catch(IOException e){
			e.getStackTrace();
		}
	}
}
0