結果

問題 No.113 宝探し
ユーザー yamax3232yamax3232
提出日時 2018-03-15 08:18:51
言語 Java21
(openjdk 21)
結果
AC  
実行時間 119 ms / 5,000 ms
コード長 460 bytes
コンパイル時間 2,272 ms
コンパイル使用メモリ 74,204 KB
実行使用メモリ 41,360 KB
最終ジャッジ日時 2024-11-16 21:50:46
合計ジャッジ時間 5,672 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 98 ms
40,112 KB
testcase_01 AC 114 ms
40,944 KB
testcase_02 AC 117 ms
41,360 KB
testcase_03 AC 111 ms
41,092 KB
testcase_04 AC 115 ms
40,904 KB
testcase_05 AC 114 ms
40,956 KB
testcase_06 AC 100 ms
39,872 KB
testcase_07 AC 105 ms
40,556 KB
testcase_08 AC 97 ms
39,672 KB
testcase_09 AC 113 ms
40,844 KB
testcase_10 AC 110 ms
40,952 KB
testcase_11 AC 98 ms
39,660 KB
testcase_12 AC 99 ms
39,888 KB
testcase_13 AC 110 ms
40,860 KB
testcase_14 AC 109 ms
40,896 KB
testcase_15 AC 93 ms
39,480 KB
testcase_16 AC 112 ms
40,860 KB
testcase_17 AC 115 ms
40,860 KB
testcase_18 AC 116 ms
40,924 KB
testcase_19 AC 105 ms
40,656 KB
testcase_20 AC 99 ms
40,076 KB
testcase_21 AC 98 ms
39,660 KB
testcase_22 AC 116 ms
41,120 KB
testcase_23 AC 103 ms
39,980 KB
testcase_24 AC 110 ms
40,004 KB
testcase_25 AC 118 ms
40,896 KB
testcase_26 AC 119 ms
41,132 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		// TODO 自動生成されたメソッド・スタブ
		int x=0;
		int y=0;
		Scanner kb=new Scanner(System.in);
		String s=kb.nextLine();
		for(int i=0;i<s.length();i++){
			if(s.charAt(i)=='N'){
				y++;
			}if(s.charAt(i)=='E'){
				x++;
			}if(s.charAt(i)=='S'){
				y--;
			}if(s.charAt(i)=='W'){
				x--;
			}
		}
		System.out.println(Math.sqrt(x*x+y*y));

	}
}
0