結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 111 ms
53,384 KB
testcase_01 AC 110 ms
53,764 KB
testcase_02 AC 115 ms
53,588 KB
testcase_03 AC 111 ms
53,988 KB
testcase_04 AC 111 ms
53,892 KB
testcase_05 AC 96 ms
53,016 KB
testcase_06 AC 112 ms
53,876 KB
testcase_07 AC 120 ms
53,476 KB
testcase_08 AC 116 ms
53,616 KB
testcase_09 AC 113 ms
53,796 KB
testcase_10 AC 114 ms
53,928 KB
testcase_11 AC 100 ms
52,936 KB
testcase_12 AC 104 ms
52,796 KB
testcase_13 AC 97 ms
52,324 KB
testcase_14 AC 114 ms
53,968 KB
testcase_15 AC 114 ms
53,920 KB
testcase_16 AC 115 ms
53,952 KB
testcase_17 AC 103 ms
52,876 KB
testcase_18 AC 117 ms
53,864 KB
testcase_19 AC 93 ms
52,704 KB
testcase_20 AC 97 ms
52,924 KB
testcase_21 AC 99 ms
53,084 KB
testcase_22 AC 101 ms
52,960 KB
testcase_23 AC 117 ms
54,100 KB
testcase_24 AC 100 ms
52,712 KB
testcase_25 AC 111 ms
53,572 KB
testcase_26 AC 105 ms
53,540 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