結果

問題 No.113 宝探し
ユーザー ぴろずぴろず
提出日時 2014-12-28 23:24:48
言語 Java21
(openjdk 21)
結果
AC  
実行時間 126 ms / 5,000 ms
コード長 443 bytes
コンパイル時間 2,270 ms
コンパイル使用メモリ 74,664 KB
実行使用メモリ 41,444 KB
最終ジャッジ日時 2024-11-16 20:33:45
合計ジャッジ時間 6,300 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 105 ms
41,052 KB
testcase_01 AC 94 ms
40,164 KB
testcase_02 AC 89 ms
39,720 KB
testcase_03 AC 111 ms
41,048 KB
testcase_04 AC 106 ms
41,228 KB
testcase_05 AC 111 ms
41,112 KB
testcase_06 AC 111 ms
41,076 KB
testcase_07 AC 104 ms
40,408 KB
testcase_08 AC 126 ms
40,940 KB
testcase_09 AC 112 ms
40,976 KB
testcase_10 AC 110 ms
40,908 KB
testcase_11 AC 107 ms
41,436 KB
testcase_12 AC 116 ms
41,132 KB
testcase_13 AC 96 ms
39,960 KB
testcase_14 AC 107 ms
40,912 KB
testcase_15 AC 115 ms
41,104 KB
testcase_16 AC 112 ms
41,056 KB
testcase_17 AC 103 ms
40,664 KB
testcase_18 AC 109 ms
41,164 KB
testcase_19 AC 96 ms
40,072 KB
testcase_20 AC 106 ms
40,964 KB
testcase_21 AC 109 ms
40,740 KB
testcase_22 AC 114 ms
40,944 KB
testcase_23 AC 93 ms
39,860 KB
testcase_24 AC 107 ms
41,444 KB
testcase_25 AC 111 ms
40,744 KB
testcase_26 AC 100 ms
40,164 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package no113;

import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int x = 0, y = 0;
		char[] s = sc.next().toCharArray();
		for(int i=0;i<s.length;i++) {
			switch (s[i]) {
			case 'N':
				y++;
				break;
			case 'S':
				y--;
				break;
			case 'E':
				x++;
				break;
			case 'W':
				x--;
				break;
			}
		}
		System.out.println(Math.sqrt(x*x+y*y));
	}

}
0