結果
問題 | No.113 宝探し |
ユーザー | hiyori |
提出日時 | 2017-08-05 15:43:33 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 4 ms / 5,000 ms |
コード長 | 469 bytes |
コンパイル時間 | 1,079 ms |
コンパイル使用メモリ | 68,224 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-16 21:35:50 |
合計ジャッジ時間 | 2,085 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 4 |
other | AC * 23 |
ソースコード
#include<iostream> #include<string> #include<math.h> using namespace std; int main() { string s; cin >> s; double height=0.0, width=0.0; for(int i=0; i<s.length(); i++) { if(s[i] == 'N') { height+=1.0; } else if(s[i] == 'S') { height-=1.0; } else if(s[i] == 'W') { width-=1.0; } else if(s[i] == 'E') { width+=1.0; } } double result = sqrt(height*height + width*width); cout << result << endl; return 0; }