結果

問題 No.113 宝探し
ユーザー fal_rndfal_rnd
提出日時 2017-07-18 23:52:01
言語 Java21
(openjdk 21)
結果
AC  
実行時間 125 ms / 5,000 ms
コード長 293 bytes
コンパイル時間 1,968 ms
コンパイル使用メモリ 75,824 KB
実行使用メモリ 41,588 KB
最終ジャッジ日時 2024-11-16 21:35:24
合計ジャッジ時間 6,000 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 111 ms
41,180 KB
testcase_01 AC 111 ms
41,588 KB
testcase_02 AC 111 ms
41,000 KB
testcase_03 AC 119 ms
41,456 KB
testcase_04 AC 104 ms
40,160 KB
testcase_05 AC 118 ms
41,064 KB
testcase_06 AC 116 ms
41,416 KB
testcase_07 AC 125 ms
41,124 KB
testcase_08 AC 115 ms
40,860 KB
testcase_09 AC 119 ms
41,268 KB
testcase_10 AC 117 ms
40,968 KB
testcase_11 AC 106 ms
40,016 KB
testcase_12 AC 118 ms
40,940 KB
testcase_13 AC 118 ms
41,048 KB
testcase_14 AC 118 ms
41,000 KB
testcase_15 AC 119 ms
40,936 KB
testcase_16 AC 118 ms
41,148 KB
testcase_17 AC 120 ms
41,284 KB
testcase_18 AC 104 ms
40,264 KB
testcase_19 AC 119 ms
41,576 KB
testcase_20 AC 118 ms
41,264 KB
testcase_21 AC 120 ms
41,132 KB
testcase_22 AC 123 ms
41,140 KB
testcase_23 AC 116 ms
41,460 KB
testcase_24 AC 120 ms
41,092 KB
testcase_25 AC 119 ms
41,200 KB
testcase_26 AC 123 ms
41,420 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.awt.Point;
class C{
	public static void main(String[]$){
		Point p=new Point(0,0);
		for(char c:new java.util.Scanner(System.in).next().toCharArray()) {
			if(c=='N')++p.y;
			if(c=='E')++p.x;
			if(c=='W')--p.x;
			if(c=='S')--p.y;
		}
		System.out.println(p.distance(0,0));
	}
}
0