結果
| 問題 |
No.113 宝探し
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2020-11-25 08:49:05 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 5,000 ms |
| コード長 | 425 bytes |
| コンパイル時間 | 1,583 ms |
| コンパイル使用メモリ | 166,036 KB |
| 実行使用メモリ | 6,944 KB |
| 最終ジャッジ日時 | 2024-07-23 19:13:41 |
| 合計ジャッジ時間 | 2,630 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 4 |
| other | AC * 23 |
ソースコード
#include <bits/stdc++.h>
#define rep(i,n) for(int i = 0; i < (n); i++)
using namespace std;
typedef long long ll;
int main(){
cin.tie(0);
ios::sync_with_stdio(0);
string s; cin >> s;
double x = 0, y = 0;
rep(i,s.size()){
if(s[i] == 'N') y++;
if(s[i] == 'E') x++;
if(s[i] == 'W') x--;
if(s[i] == 'S') y--;
}
cout.precision(17);
cout << sqrt(x*x+y*y) << endl;
}