結果

問題 No.113 宝探し
ユーザー d_sei
提出日時 2019-08-27 19:54:30
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 5,000 ms
コード長 481 bytes
コンパイル時間 821 ms
コンパイル使用メモリ 79,276 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-16 22:10:05
合計ジャッジ時間 1,333 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 23
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<algorithm>
#include <vector>
#include<cmath>
#include<iomanip>
using namespace std;
typedef long long int lont;
int main() {
	string S;
	cin >> S;
	int Z = S.size();
	int cntx = 0;
	int cnty = 0;
	for (int ia = 0; ia < Z; ia++) {
		if (S.at(ia) == 'N') {
			cnty++;
		}
		else if (S.at(ia) == 'S') {
			cnty--;
		}
		else if (S.at(ia) == 'E') {
			cntx++;
		}
		else if (S.at(ia) == 'W') {
			cntx--;
		}
	}
	cout << sqrt(cntx*cntx+cnty*cnty) << endl;
}
0