結果

問題 No.113 宝探し
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-11-12 08:17:55
言語 Java21
(openjdk 21)
結果
AC  
実行時間 119 ms / 5,000 ms
コード長 678 bytes
コンパイル時間 1,924 ms
コンパイル使用メモリ 74,968 KB
実行使用メモリ 41,344 KB
最終ジャッジ日時 2024-11-16 21:28:55
合計ジャッジ時間 5,857 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
40,832 KB
testcase_01 AC 103 ms
39,816 KB
testcase_02 AC 113 ms
41,036 KB
testcase_03 AC 117 ms
40,956 KB
testcase_04 AC 118 ms
41,344 KB
testcase_05 AC 101 ms
39,872 KB
testcase_06 AC 115 ms
40,732 KB
testcase_07 AC 113 ms
41,116 KB
testcase_08 AC 115 ms
41,176 KB
testcase_09 AC 118 ms
41,036 KB
testcase_10 AC 106 ms
39,868 KB
testcase_11 AC 119 ms
41,192 KB
testcase_12 AC 117 ms
41,276 KB
testcase_13 AC 113 ms
41,112 KB
testcase_14 AC 110 ms
41,172 KB
testcase_15 AC 107 ms
40,960 KB
testcase_16 AC 112 ms
41,252 KB
testcase_17 AC 102 ms
40,108 KB
testcase_18 AC 115 ms
40,888 KB
testcase_19 AC 113 ms
41,032 KB
testcase_20 AC 114 ms
41,024 KB
testcase_21 AC 109 ms
41,084 KB
testcase_22 AC 119 ms
41,024 KB
testcase_23 AC 107 ms
40,920 KB
testcase_24 AC 112 ms
41,104 KB
testcase_25 AC 114 ms
40,808 KB
testcase_26 AC 116 ms
40,988 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        String S = sc.nextLine();
        String [] arr = S.split("");
        int mx = 0;
        int my = 0;
        for(int i=0; i<arr.length; i++){
            if( arr[i].equals("N") ){
                my = my + 1;
            }else if( arr[i].equals("S") ){
                my = my - 1;
            }else if( arr[i].equals("E") ){
                mx = mx + 1;
            }else if( arr[i].equals("W") ){
                mx = mx - 1;
            }
        }
        double dis = Math.sqrt(mx*mx+my*my);
        System.out.println(dis);
    }
}
0