結果

問題 No.113 宝探し
ユーザー kou6839kou6839
提出日時 2014-12-29 17:04:45
言語 Java21
(openjdk 21)
結果
AC  
実行時間 136 ms / 5,000 ms
コード長 503 bytes
コンパイル時間 2,442 ms
コンパイル使用メモリ 75,152 KB
実行使用メモリ 41,472 KB
最終ジャッジ日時 2024-11-16 20:37:38
合計ジャッジ時間 7,441 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
41,152 KB
testcase_01 AC 131 ms
41,472 KB
testcase_02 AC 134 ms
40,976 KB
testcase_03 AC 130 ms
41,244 KB
testcase_04 AC 132 ms
41,200 KB
testcase_05 AC 132 ms
41,384 KB
testcase_06 AC 118 ms
40,240 KB
testcase_07 AC 130 ms
41,120 KB
testcase_08 AC 129 ms
41,116 KB
testcase_09 AC 130 ms
41,328 KB
testcase_10 AC 130 ms
41,452 KB
testcase_11 AC 130 ms
41,112 KB
testcase_12 AC 130 ms
41,232 KB
testcase_13 AC 131 ms
41,244 KB
testcase_14 AC 132 ms
41,376 KB
testcase_15 AC 130 ms
41,056 KB
testcase_16 AC 131 ms
41,384 KB
testcase_17 AC 131 ms
41,252 KB
testcase_18 AC 131 ms
41,296 KB
testcase_19 AC 117 ms
40,336 KB
testcase_20 AC 131 ms
41,108 KB
testcase_21 AC 130 ms
41,220 KB
testcase_22 AC 130 ms
41,132 KB
testcase_23 AC 129 ms
41,140 KB
testcase_24 AC 136 ms
41,148 KB
testcase_25 AC 131 ms
41,100 KB
testcase_26 AC 132 ms
41,308 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.math.*;
import java.util.*;

class Main {
	public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        String ss = sc.next();
        int ue =0;
        int migi=0;
        for(int i=0;i<ss.length();i++){
        	if(ss.charAt(i)=='N') ue++;
        	if(ss.charAt(i)=='S') ue--;
        	if(ss.charAt(i)=='E') migi++;
        	if(ss.charAt(i)=='W') migi--;
        }
        System.out.println(Math.sqrt(Math.pow(ue, 2)+Math.pow(migi, 2)));
        
    }
}
0