結果

問題 No.113 宝探し
ユーザー NeigNeig
提出日時 2016-03-31 03:52:16
言語 Java21
(openjdk 21)
結果
AC  
実行時間 118 ms / 5,000 ms
コード長 600 bytes
コンパイル時間 3,139 ms
コンパイル使用メモリ 74,868 KB
実行使用メモリ 41,308 KB
最終ジャッジ日時 2024-11-16 21:12:41
合計ジャッジ時間 6,838 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 108 ms
41,076 KB
testcase_01 AC 114 ms
40,936 KB
testcase_02 AC 118 ms
40,856 KB
testcase_03 AC 97 ms
40,108 KB
testcase_04 AC 111 ms
40,996 KB
testcase_05 AC 110 ms
41,308 KB
testcase_06 AC 99 ms
40,120 KB
testcase_07 AC 96 ms
39,844 KB
testcase_08 AC 95 ms
39,848 KB
testcase_09 AC 116 ms
40,956 KB
testcase_10 AC 108 ms
40,628 KB
testcase_11 AC 97 ms
39,912 KB
testcase_12 AC 109 ms
41,132 KB
testcase_13 AC 110 ms
40,972 KB
testcase_14 AC 111 ms
41,108 KB
testcase_15 AC 100 ms
39,912 KB
testcase_16 AC 105 ms
40,688 KB
testcase_17 AC 109 ms
40,732 KB
testcase_18 AC 106 ms
40,588 KB
testcase_19 AC 102 ms
40,040 KB
testcase_20 AC 110 ms
40,948 KB
testcase_21 AC 108 ms
40,872 KB
testcase_22 AC 99 ms
39,708 KB
testcase_23 AC 96 ms
40,192 KB
testcase_24 AC 108 ms
40,996 KB
testcase_25 AC 105 ms
40,716 KB
testcase_26 AC 96 ms
39,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;


public class Takarasagasi {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);

        int x = 0,y = 0;
        double d;

        String s = sc.next();

        for (int i = 0; i < s.length() ; i++ ) {

          char  a = s.charAt(i);

          if (a == 'N') {
            x = x + 1;
          }else if (a == 'S') {
            x = x - 1;
          }else if (a == 'W') {
            y = y + 1;
          }else if (a =='E')
            y = y - 1;
        }
      d = Math.sqrt(x*x + y*y);

        System.out.println(d );
    }
}
0