結果
| 問題 | No.113 宝探し |
| コンテスト | |
| ユーザー |
d_sei
|
| 提出日時 | 2019-08-27 19:54:30 |
| 言語 | C++14 (gcc 15.2.0 + boost 1.89.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 5,000 ms |
| コード長 | 481 bytes |
| 記録 | |
| コンパイル時間 | 683 ms |
| コンパイル使用メモリ | 97,952 KB |
| 実行使用メモリ | 7,972 KB |
| 最終ジャッジ日時 | 2026-05-12 03:26:32 |
| 合計ジャッジ時間 | 2,552 ms |
|
ジャッジサーバーID (参考情報) |
tmp-judge_1 / judge3_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 4 |
| other | AC * 23 |
ソースコード
#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;
}
d_sei