結果
| 問題 |
No.113 宝探し
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2020-09-05 03:28:46 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 5,000 ms |
| コード長 | 406 bytes |
| コンパイル時間 | 1,981 ms |
| コンパイル使用メモリ | 166,728 KB |
| 実行使用メモリ | 6,820 KB |
| 最終ジャッジ日時 | 2024-11-27 04:38:56 |
| 合計ジャッジ時間 | 2,496 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 4 |
| other | AC * 23 |
ソースコード
#include <bits/stdc++.h>
#define rep(i, ss, ee) for (int i = ss; i < ee; ++i)
using namespace std;
int main() {
cin.tie(0);
ios::sync_with_stdio(false);
int x = 0, y = 0;
string s;
cin >> s;
rep(i, 0, s.size()) {
if (s[i] == 'N') y++;
if (s[i] == 'S') y--;
if (s[i] == 'E') x++;
if (s[i] == 'W') x--;
}
double ans = sqrt(y * y + x * x);
cout << ans << endl;
getchar();
}