結果

問題 No.113 宝探し
ユーザー m2543315647m2543315647
提出日時 2015-05-15 08:10:44
言語 Java21
(openjdk 21)
結果
AC  
実行時間 119 ms / 5,000 ms
コード長 362 bytes
コンパイル時間 2,903 ms
コンパイル使用メモリ 74,488 KB
実行使用メモリ 54,120 KB
最終ジャッジ日時 2024-04-28 07:24:07
合計ジャッジ時間 6,734 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 112 ms
53,700 KB
testcase_01 AC 112 ms
53,948 KB
testcase_02 AC 108 ms
53,748 KB
testcase_03 AC 113 ms
53,972 KB
testcase_04 AC 109 ms
53,876 KB
testcase_05 AC 101 ms
53,112 KB
testcase_06 AC 116 ms
53,864 KB
testcase_07 AC 108 ms
53,176 KB
testcase_08 AC 104 ms
52,996 KB
testcase_09 AC 102 ms
52,856 KB
testcase_10 AC 118 ms
53,860 KB
testcase_11 AC 119 ms
54,120 KB
testcase_12 AC 115 ms
53,892 KB
testcase_13 AC 116 ms
53,496 KB
testcase_14 AC 113 ms
53,908 KB
testcase_15 AC 101 ms
53,124 KB
testcase_16 AC 104 ms
52,696 KB
testcase_17 AC 111 ms
54,096 KB
testcase_18 AC 103 ms
53,108 KB
testcase_19 AC 106 ms
52,964 KB
testcase_20 AC 104 ms
53,144 KB
testcase_21 AC 111 ms
53,756 KB
testcase_22 AC 100 ms
52,964 KB
testcase_23 AC 100 ms
52,708 KB
testcase_24 AC 109 ms
53,720 KB
testcase_25 AC 105 ms
53,380 KB
testcase_26 AC 111 ms
53,980 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class No113 {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		char[] s = sc.next().toCharArray();
		int x=0,y=0;
		for(int i=0;i<s.length;i++){
			y+=s[i]=='N'?1:s[i]=='S'?-1:0;
			x+=s[i]=='E'?1:s[i]=='W'?-1:0;
		}
		System.out.println(Math.abs(Math.sqrt(Math.pow(x, 2)+Math.pow(y, 2))));
	}
}
0