結果

問題 No.113 宝探し
ユーザー fal_rndfal_rnd
提出日時 2017-07-18 23:55:27
言語 Java21
(openjdk 21)
結果
AC  
実行時間 116 ms / 5,000 ms
コード長 254 bytes
コンパイル時間 1,967 ms
コンパイル使用メモリ 73,956 KB
実行使用メモリ 41,344 KB
最終ジャッジ日時 2024-11-16 21:35:32
合計ジャッジ時間 5,788 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
41,112 KB
testcase_01 AC 107 ms
41,344 KB
testcase_02 AC 89 ms
39,564 KB
testcase_03 AC 107 ms
40,892 KB
testcase_04 AC 108 ms
40,932 KB
testcase_05 AC 104 ms
40,792 KB
testcase_06 AC 96 ms
39,900 KB
testcase_07 AC 104 ms
40,780 KB
testcase_08 AC 107 ms
40,944 KB
testcase_09 AC 103 ms
41,024 KB
testcase_10 AC 113 ms
41,148 KB
testcase_11 AC 105 ms
40,256 KB
testcase_12 AC 93 ms
39,840 KB
testcase_13 AC 106 ms
41,048 KB
testcase_14 AC 101 ms
40,156 KB
testcase_15 AC 96 ms
39,936 KB
testcase_16 AC 96 ms
39,864 KB
testcase_17 AC 101 ms
39,716 KB
testcase_18 AC 107 ms
40,716 KB
testcase_19 AC 103 ms
40,744 KB
testcase_20 AC 107 ms
41,112 KB
testcase_21 AC 98 ms
40,480 KB
testcase_22 AC 99 ms
39,708 KB
testcase_23 AC 104 ms
40,812 KB
testcase_24 AC 98 ms
40,012 KB
testcase_25 AC 101 ms
40,128 KB
testcase_26 AC 99 ms
40,120 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class C{
	public static void main(String[]$){
		int x=0,y=0;
		for(char c:new java.util.Scanner(System.in).next().toCharArray()) {
			if(c=='N')++y;
			if(c=='E')++x;
			if(c=='W')--x;
			if(c=='S')--y;
		}
		System.out.println(Math.sqrt(x*x+y*y));
	}
}
0