結果

問題 No.113 宝探し
ユーザー htensaihtensai
提出日時 2019-12-05 15:04:17
言語 Java21
(openjdk 21)
結果
AC  
実行時間 122 ms / 5,000 ms
コード長 474 bytes
コンパイル時間 1,984 ms
コンパイル使用メモリ 73,992 KB
実行使用メモリ 41,452 KB
最終ジャッジ日時 2024-11-16 22:20:53
合計ジャッジ時間 6,021 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
41,304 KB
testcase_01 AC 113 ms
40,652 KB
testcase_02 AC 102 ms
40,332 KB
testcase_03 AC 113 ms
40,960 KB
testcase_04 AC 113 ms
41,304 KB
testcase_05 AC 118 ms
41,004 KB
testcase_06 AC 115 ms
41,148 KB
testcase_07 AC 117 ms
40,788 KB
testcase_08 AC 118 ms
41,036 KB
testcase_09 AC 119 ms
40,852 KB
testcase_10 AC 104 ms
39,988 KB
testcase_11 AC 113 ms
41,048 KB
testcase_12 AC 119 ms
41,108 KB
testcase_13 AC 113 ms
40,132 KB
testcase_14 AC 122 ms
41,072 KB
testcase_15 AC 116 ms
40,928 KB
testcase_16 AC 103 ms
40,056 KB
testcase_17 AC 117 ms
41,188 KB
testcase_18 AC 114 ms
40,940 KB
testcase_19 AC 114 ms
41,200 KB
testcase_20 AC 117 ms
41,104 KB
testcase_21 AC 115 ms
41,452 KB
testcase_22 AC 118 ms
40,944 KB
testcase_23 AC 119 ms
41,088 KB
testcase_24 AC 117 ms
40,872 KB
testcase_25 AC 119 ms
40,956 KB
testcase_26 AC 104 ms
39,936 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args) {
		Scanner sc = new Scanner(System.in);
		char[] arr = sc.next().toCharArray();
	    int x = 0;
	    int y = 0;
	    for (char c : arr) {
	        if (c == 'N') {
	            y++;
	        } else if (c == 'S') {
	            y--;
	        } else if (c == 'E') {
	            x++;
	        } else {
	            x--;
	        }
	    }
		System.out.println(Math.sqrt(x * x + y * y));
   }
}

0