結果

問題 No.113 宝探し
ユーザー k_kadorak_kadora
提出日時 2015-05-25 23:55:38
言語 Java21
(openjdk 21)
結果
AC  
実行時間 128 ms / 5,000 ms
コード長 441 bytes
コンパイル時間 3,988 ms
コンパイル使用メモリ 75,224 KB
実行使用メモリ 41,344 KB
最終ジャッジ日時 2024-11-16 20:57:09
合計ジャッジ時間 7,397 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
40,960 KB
testcase_01 AC 112 ms
39,796 KB
testcase_02 AC 126 ms
41,016 KB
testcase_03 AC 113 ms
40,336 KB
testcase_04 AC 124 ms
41,040 KB
testcase_05 AC 123 ms
40,828 KB
testcase_06 AC 123 ms
40,960 KB
testcase_07 AC 121 ms
40,700 KB
testcase_08 AC 120 ms
41,184 KB
testcase_09 AC 125 ms
41,056 KB
testcase_10 AC 122 ms
41,244 KB
testcase_11 AC 127 ms
41,212 KB
testcase_12 AC 124 ms
41,120 KB
testcase_13 AC 123 ms
41,052 KB
testcase_14 AC 119 ms
41,028 KB
testcase_15 AC 128 ms
40,984 KB
testcase_16 AC 112 ms
40,240 KB
testcase_17 AC 123 ms
40,852 KB
testcase_18 AC 123 ms
41,232 KB
testcase_19 AC 120 ms
41,344 KB
testcase_20 AC 123 ms
41,112 KB
testcase_21 AC 108 ms
40,108 KB
testcase_22 AC 119 ms
41,296 KB
testcase_23 AC 124 ms
41,088 KB
testcase_24 AC 123 ms
41,148 KB
testcase_25 AC 120 ms
40,972 KB
testcase_26 AC 119 ms
41,100 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
public class Treasure{
	public static void main(String[] arg){
		Scanner sc = new Scanner(System.in);
		int x=0,y=0;
		double res;
		String in;
		in = sc.next();
		int l = in.length();
		for(int i = 0;i<l;i++){
			if(in.charAt(i) == 'N'){
				y++;
			}else if(in.charAt(i) == 'E'){
				x++;
			}else if(in.charAt(i) == 'S'){
				y--;
			}else{
				x--;
			}
		}
		res = Math.sqrt(x*x+y*y);
		System.out.println(res);
	}
}
0