結果

問題 No.113 宝探し
ユーザー Lay_ecLay_ec
提出日時 2014-12-28 23:24:16
言語 C++11
(gcc 13.3.0)
結果
AC  
実行時間 2 ms / 5,000 ms
コード長 454 bytes
コンパイル時間 513 ms
コンパイル使用メモリ 73,204 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-16 20:32:53
合計ジャッジ時間 1,298 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 23
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <string>
#include <vector>
#include <cmath>
#include <algorithm>
#include <cstdlib>
#include <ctime>
#include <cstdio>
#include <functional>
#include <set>
#include <cstring>

using namespace std;

int main()
{	
	string s;
	cin>>s;

	int x=0,y=0;
	for(int i=0;i<s.size();i++){
		if(s[i]=='N') y++;
		else if(s[i]=='S') y--;
		else if(s[i]=='E') x++;
		else if(s[i]=='W') x--;


	}
		cout<<sqrt(x*x+y*y)<<endl;

	return 0;

}
0