結果

問題 No.113 宝探し
ユーザー ohreitetsu
提出日時 2018-07-11 21:50:32
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 5,000 ms
コード長 514 bytes
コンパイル時間 558 ms
コンパイル使用メモリ 68,480 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-16 21:57:18
合計ジャッジ時間 1,305 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 23
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <stdio.h>
#include <string>
#include <math.h>
using namespace std;
int x=0;
int y=0;
void move(char direct)
{
	switch(direct){
		case 'N':
			y++;
			break;
		case 'S':
			y--;
			break;
		case 'W':
			x--;
			break;
		case 'E':
			x++;
			break;
	}
}
int main(int argc, char* argv[])
{
	string S;
	cin>>S;
	for (int i=0;i<S.size();i++){
		move(S[i]);
	}
	double dist=sqrt((double)(x*x+y*y));
	if (dist==(int)dist){
		cout<<dist<<endl;
	}else{
		printf("%.5lf\n",dist);
	}
	return 0;
}
0