結果

問題 No.113 宝探し
ユーザー ohagi_1182ohagi_1182
提出日時 2017-10-20 17:35:25
言語 Java21
(openjdk 21)
結果
AC  
実行時間 122 ms / 5,000 ms
コード長 461 bytes
コンパイル時間 1,904 ms
コンパイル使用メモリ 75,240 KB
実行使用メモリ 41,692 KB
最終ジャッジ日時 2024-11-16 21:38:49
合計ジャッジ時間 5,793 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 112 ms
41,128 KB
testcase_01 AC 108 ms
40,884 KB
testcase_02 AC 92 ms
39,548 KB
testcase_03 AC 96 ms
39,724 KB
testcase_04 AC 114 ms
41,020 KB
testcase_05 AC 116 ms
40,964 KB
testcase_06 AC 114 ms
40,912 KB
testcase_07 AC 111 ms
41,168 KB
testcase_08 AC 110 ms
40,832 KB
testcase_09 AC 99 ms
39,824 KB
testcase_10 AC 115 ms
41,472 KB
testcase_11 AC 112 ms
40,716 KB
testcase_12 AC 115 ms
41,556 KB
testcase_13 AC 111 ms
41,276 KB
testcase_14 AC 112 ms
40,972 KB
testcase_15 AC 117 ms
41,472 KB
testcase_16 AC 113 ms
40,892 KB
testcase_17 AC 107 ms
39,876 KB
testcase_18 AC 122 ms
41,264 KB
testcase_19 AC 110 ms
41,076 KB
testcase_20 AC 114 ms
41,308 KB
testcase_21 AC 101 ms
40,040 KB
testcase_22 AC 103 ms
40,236 KB
testcase_23 AC 110 ms
41,132 KB
testcase_24 AC 115 ms
41,240 KB
testcase_25 AC 117 ms
41,692 KB
testcase_26 AC 102 ms
39,708 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		String s = sc.next();
		int n = s.length();
		int x = 0, y = 0;
		for(int i = 0 ; i < n ; i++) {
			if(s.charAt(i) == 'N') {
				y++;
			} else if(s.charAt(i) == 'S') {
				y--;
			} else if(s.charAt(i) == 'E') {
				x++;
			} else {
				x--;
			}
		}
		System.out.printf("%.5f\n", Math.pow(Math.abs(x * x + y * y), 0.5));
 	}
}

0