結果

問題 No.113 宝探し
ユーザー uafr_csuafr_cs
提出日時 2015-05-15 04:26:50
言語 Java21
(openjdk 21)
結果
AC  
実行時間 140 ms / 5,000 ms
コード長 444 bytes
コンパイル時間 2,398 ms
コンパイル使用メモリ 74,660 KB
実行使用メモリ 41,552 KB
最終ジャッジ日時 2024-11-16 20:54:17
合計ジャッジ時間 6,907 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
41,268 KB
testcase_01 AC 135 ms
41,540 KB
testcase_02 AC 133 ms
41,100 KB
testcase_03 AC 126 ms
41,552 KB
testcase_04 AC 129 ms
41,120 KB
testcase_05 AC 140 ms
40,964 KB
testcase_06 AC 132 ms
41,376 KB
testcase_07 AC 118 ms
41,044 KB
testcase_08 AC 129 ms
41,316 KB
testcase_09 AC 134 ms
40,848 KB
testcase_10 AC 133 ms
41,252 KB
testcase_11 AC 134 ms
41,192 KB
testcase_12 AC 120 ms
41,120 KB
testcase_13 AC 132 ms
40,972 KB
testcase_14 AC 133 ms
40,772 KB
testcase_15 AC 135 ms
40,984 KB
testcase_16 AC 132 ms
41,016 KB
testcase_17 AC 134 ms
41,024 KB
testcase_18 AC 128 ms
41,216 KB
testcase_19 AC 127 ms
41,516 KB
testcase_20 AC 124 ms
40,924 KB
testcase_21 AC 135 ms
41,316 KB
testcase_22 AC 128 ms
40,908 KB
testcase_23 AC 133 ms
40,976 KB
testcase_24 AC 125 ms
41,236 KB
testcase_25 AC 127 ms
41,136 KB
testcase_26 AC 133 ms
41,168 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.LinkedList;
import java.util.Scanner;

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