結果

問題 No.113 宝探し
ユーザー kamonegi2236kamonegi2236
提出日時 2015-11-14 13:23:46
言語 Java21
(openjdk 21)
結果
AC  
実行時間 123 ms / 5,000 ms
コード長 489 bytes
コンパイル時間 3,997 ms
コンパイル使用メモリ 74,676 KB
実行使用メモリ 41,556 KB
最終ジャッジ日時 2024-11-16 21:04:18
合計ジャッジ時間 7,254 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
41,304 KB
testcase_01 AC 111 ms
40,192 KB
testcase_02 AC 121 ms
41,504 KB
testcase_03 AC 105 ms
39,796 KB
testcase_04 AC 117 ms
41,088 KB
testcase_05 AC 119 ms
41,344 KB
testcase_06 AC 117 ms
40,992 KB
testcase_07 AC 117 ms
41,068 KB
testcase_08 AC 115 ms
41,424 KB
testcase_09 AC 120 ms
41,068 KB
testcase_10 AC 121 ms
41,392 KB
testcase_11 AC 107 ms
39,796 KB
testcase_12 AC 123 ms
41,300 KB
testcase_13 AC 119 ms
41,244 KB
testcase_14 AC 122 ms
41,032 KB
testcase_15 AC 123 ms
41,116 KB
testcase_16 AC 119 ms
41,476 KB
testcase_17 AC 117 ms
41,344 KB
testcase_18 AC 118 ms
41,520 KB
testcase_19 AC 119 ms
41,556 KB
testcase_20 AC 118 ms
41,104 KB
testcase_21 AC 116 ms
40,992 KB
testcase_22 AC 105 ms
39,796 KB
testcase_23 AC 104 ms
40,192 KB
testcase_24 AC 119 ms
41,328 KB
testcase_25 AC 121 ms
41,384 KB
testcase_26 AC 114 ms
40,976 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class No113 {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		String st = sc.next();
		int NCount =0;
		int ECount =0;
			
		for(int i=0; i<st.length(); i++){
			switch(st.charAt(i)){
			case 'N':
				NCount++;
				break;
			case 'S':
				NCount--;
				break;
			case 'E':
				ECount++;
				break;
			case 'W':
				ECount--;
				break;
			}
		}
		System.out.println(Math.sqrt(Math.pow(ECount,2)+Math.pow(NCount,2)));
	}
}
0