結果

問題 No.113 宝探し
ユーザー m2543315647m2543315647
提出日時 2015-05-15 08:13:08
言語 Java21
(openjdk 21)
結果
AC  
実行時間 126 ms / 5,000 ms
コード長 335 bytes
コンパイル時間 3,759 ms
コンパイル使用メモリ 74,440 KB
実行使用メモリ 41,424 KB
最終ジャッジ日時 2024-11-16 20:55:06
合計ジャッジ時間 7,122 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 111 ms
41,356 KB
testcase_01 AC 115 ms
40,808 KB
testcase_02 AC 104 ms
39,704 KB
testcase_03 AC 126 ms
41,400 KB
testcase_04 AC 118 ms
41,136 KB
testcase_05 AC 115 ms
41,180 KB
testcase_06 AC 108 ms
40,688 KB
testcase_07 AC 123 ms
41,392 KB
testcase_08 AC 116 ms
40,860 KB
testcase_09 AC 124 ms
41,024 KB
testcase_10 AC 121 ms
40,836 KB
testcase_11 AC 120 ms
41,260 KB
testcase_12 AC 118 ms
40,736 KB
testcase_13 AC 115 ms
41,192 KB
testcase_14 AC 102 ms
39,920 KB
testcase_15 AC 110 ms
41,076 KB
testcase_16 AC 109 ms
41,156 KB
testcase_17 AC 111 ms
40,988 KB
testcase_18 AC 111 ms
41,424 KB
testcase_19 AC 113 ms
41,392 KB
testcase_20 AC 116 ms
40,996 KB
testcase_21 AC 113 ms
41,096 KB
testcase_22 AC 119 ms
40,896 KB
testcase_23 AC 118 ms
41,188 KB
testcase_24 AC 119 ms
41,156 KB
testcase_25 AC 103 ms
39,780 KB
testcase_26 AC 103 ms
40,068 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.sqrt((x*x)+(y*y)));
	}
}
0