結果

問題 No.113 宝探し
ユーザー Yang33
提出日時 2016-01-06 15:29:14
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
AC  
実行時間 2 ms / 5,000 ms
コード長 376 bytes
コンパイル時間 786 ms
コンパイル使用メモリ 66,768 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-16 21:05:51
合計ジャッジ時間 1,366 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 23
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<cmath>
#include<iomanip>
using namespace std;
int main(void)
{
	int i, n = 0, e = 0;
	double ans;
	char s[105];

	cin >> s;
	for (i = 0; s[i] != '\0'; i++) {
		if (s[i] == 'N')n++;
		else if (s[i] == 'S')n--;
		else if (s[i] == 'E')e++;
		else e--;
	}
	ans = (double)sqrt(n*n + e*e);
	cout << fixed << setprecision(5) << ans << endl;


	return 0;
}
0