結果

問題 No.113 宝探し
ユーザー shinwisteriashinwisteria
提出日時 2018-03-04 13:53:46
言語 Java21
(openjdk 21)
結果
AC  
実行時間 136 ms / 5,000 ms
コード長 460 bytes
コンパイル時間 3,672 ms
コンパイル使用メモリ 74,680 KB
実行使用メモリ 41,496 KB
最終ジャッジ日時 2024-11-16 21:49:28
合計ジャッジ時間 7,968 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
41,368 KB
testcase_01 AC 130 ms
41,244 KB
testcase_02 AC 129 ms
41,148 KB
testcase_03 AC 128 ms
41,380 KB
testcase_04 AC 130 ms
41,428 KB
testcase_05 AC 127 ms
41,192 KB
testcase_06 AC 128 ms
41,288 KB
testcase_07 AC 130 ms
41,420 KB
testcase_08 AC 129 ms
41,140 KB
testcase_09 AC 130 ms
41,116 KB
testcase_10 AC 130 ms
41,284 KB
testcase_11 AC 134 ms
41,164 KB
testcase_12 AC 130 ms
41,316 KB
testcase_13 AC 132 ms
40,820 KB
testcase_14 AC 114 ms
41,364 KB
testcase_15 AC 129 ms
41,220 KB
testcase_16 AC 131 ms
41,448 KB
testcase_17 AC 130 ms
41,244 KB
testcase_18 AC 130 ms
41,496 KB
testcase_19 AC 131 ms
41,428 KB
testcase_20 AC 136 ms
41,392 KB
testcase_21 AC 131 ms
40,688 KB
testcase_22 AC 135 ms
41,172 KB
testcase_23 AC 135 ms
41,316 KB
testcase_24 AC 130 ms
40,952 KB
testcase_25 AC 129 ms
41,376 KB
testcase_26 AC 129 ms
41,060 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package m.shin;
import java.util.Scanner;
public class Con113 {

	public static void main(String[] args) {
		Scanner s = new Scanner(System.in);
		String root = s.next();
		s.close();

		int x = 0 , y = 0;
		for(int i = 0;i < root.length();i++){
			switch(root.charAt(i)){
			case 'N' : y++;
			break;
			case 'S' : y--;
			break;
			case 'E' : x++;
			break;
			case 'W' : x--;
			}
		}
		 double ans = Math.sqrt(x*x + y*y);
		 System.out.println(ans);
	}

}
0