結果

問題 No.113 宝探し
ユーザー m2543315647m2543315647
提出日時 2015-05-15 08:10:44
言語 Java21
(openjdk 21)
結果
AC  
実行時間 143 ms / 5,000 ms
コード長 362 bytes
コンパイル時間 3,602 ms
コンパイル使用メモリ 75,100 KB
実行使用メモリ 41,384 KB
最終ジャッジ日時 2024-11-16 20:54:39
合計ジャッジ時間 8,062 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
41,152 KB
testcase_01 AC 130 ms
41,384 KB
testcase_02 AC 111 ms
39,932 KB
testcase_03 AC 127 ms
41,080 KB
testcase_04 AC 115 ms
40,036 KB
testcase_05 AC 129 ms
41,144 KB
testcase_06 AC 143 ms
40,952 KB
testcase_07 AC 139 ms
40,880 KB
testcase_08 AC 128 ms
41,088 KB
testcase_09 AC 128 ms
40,992 KB
testcase_10 AC 135 ms
40,936 KB
testcase_11 AC 126 ms
41,008 KB
testcase_12 AC 123 ms
41,220 KB
testcase_13 AC 94 ms
39,688 KB
testcase_14 AC 107 ms
40,960 KB
testcase_15 AC 127 ms
41,252 KB
testcase_16 AC 127 ms
40,800 KB
testcase_17 AC 129 ms
41,176 KB
testcase_18 AC 126 ms
41,256 KB
testcase_19 AC 126 ms
41,168 KB
testcase_20 AC 97 ms
39,492 KB
testcase_21 AC 112 ms
41,136 KB
testcase_22 AC 114 ms
40,944 KB
testcase_23 AC 127 ms
40,852 KB
testcase_24 AC 129 ms
41,100 KB
testcase_25 AC 131 ms
41,140 KB
testcase_26 AC 126 ms
41,252 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