結果

問題 No.113 宝探し
ユーザー matsuyoshi30matsuyoshi30
提出日時 2016-08-16 22:51:58
言語 Java21
(openjdk 21)
結果
AC  
実行時間 128 ms / 5,000 ms
コード長 781 bytes
コンパイル時間 2,499 ms
コンパイル使用メモリ 75,176 KB
実行使用メモリ 41,692 KB
最終ジャッジ日時 2024-11-16 21:20:35
合計ジャッジ時間 5,990 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 103 ms
40,284 KB
testcase_01 AC 114 ms
41,308 KB
testcase_02 AC 118 ms
41,440 KB
testcase_03 AC 115 ms
41,324 KB
testcase_04 AC 113 ms
41,352 KB
testcase_05 AC 103 ms
40,020 KB
testcase_06 AC 116 ms
41,248 KB
testcase_07 AC 99 ms
40,172 KB
testcase_08 AC 116 ms
41,692 KB
testcase_09 AC 115 ms
41,136 KB
testcase_10 AC 114 ms
41,004 KB
testcase_11 AC 113 ms
41,332 KB
testcase_12 AC 113 ms
40,932 KB
testcase_13 AC 113 ms
41,128 KB
testcase_14 AC 104 ms
40,108 KB
testcase_15 AC 116 ms
41,504 KB
testcase_16 AC 112 ms
41,268 KB
testcase_17 AC 111 ms
40,832 KB
testcase_18 AC 116 ms
41,512 KB
testcase_19 AC 112 ms
41,164 KB
testcase_20 AC 112 ms
41,472 KB
testcase_21 AC 111 ms
41,188 KB
testcase_22 AC 114 ms
40,832 KB
testcase_23 AC 128 ms
40,268 KB
testcase_24 AC 113 ms
40,952 KB
testcase_25 AC 113 ms
41,408 KB
testcase_26 AC 117 ms
41,432 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collections;

class Main {
    public static void main(String[] args) {
        Scanner in = new Scanner(System.in);
        String s = in.next();

        int x = 0, y = 0;
        for(int i=0; i<s.length(); i++) {
            switch(s.charAt(i)) {
            case 'N':
                y++;
                break;
            case 'W':
                x--;
                break;
            case 'S':
                y--;
                break;
            case 'E':
                x++;
                break;
            default:
                break;
            }
        }

        double l = Math.sqrt(x*x + y*y);

        System.out.println(l);

        in.close();
    }
}
0