結果
問題 |
No.113 宝探し
|
ユーザー |
![]() |
提出日時 | 2015-08-04 22:59:56 |
言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 809 bytes |
コンパイル時間 | 498 ms |
コンパイル使用メモリ | 74,104 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-07-18 01:19:57 |
合計ジャッジ時間 | 1,451 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | WA * 4 |
other | WA * 23 |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:47:42: warning: ‘y’ may be used uninitialized in this function [-Wmaybe-uninitialized] 47 | printf("%.10lf\n",sqrt((double)(x*x+y*y))); | ~^~ main.cpp:47:38: warning: ‘x’ may be used uninitialized in this function [-Wmaybe-uninitialized] 47 | printf("%.10lf\n",sqrt((double)(x*x+y*y))); | ~^~
ソースコード
#include <cstdio> #include <cstdlib> #include <iostream> #include <string> #include <cmath> #include <algorithm> #include <vector> #include <queue> #include <stack> #include <map> #include <set> #include <cstring> typedef long long ll; using namespace std; #define mod 1000000009 #define INF 10000000 #define LLINF 2000000000000000000LL #define SIZE 101 int main(){ string S; int x,y; cin >> S; for(int i=0;i<S.size();i++) { switch (S[i]) { case 'N': y++; break; case 'W': x++; break; case 'S': y--; break; case 'E': x--; } } printf("%.10lf\n",sqrt((double)(x*x+y*y))); return 0; }