結果
| 問題 | No.113 宝探し |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2018-07-11 21:50:32 |
| 言語 | C++14 (gcc 15.3.0 + boost 1.92.0 + ACL) |
| 結果 |
AC
不安定
|
| 実行時間 | 1 ms / 5,000 ms |
| + 413µs | |
| コード長 | 514 bytes |
| 記録 | |
| コンパイル時間 | 315 ms |
| コンパイル使用メモリ | 81,692 KB |
| 実行使用メモリ | 9,868 KB |
| 最終ジャッジ日時 | 2026-09-25 01:31:33 |
| 合計ジャッジ時間 | 1,762 ms |
|
ジャッジサーバーID (参考情報) |
judge1_1 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 4 |
| other | AC * 23 |
ソースコード
#include <iostream>
#include <stdio.h>
#include <string>
#include <math.h>
using namespace std;
int x=0;
int y=0;
void move(char direct)
{
switch(direct){
case 'N':
y++;
break;
case 'S':
y--;
break;
case 'W':
x--;
break;
case 'E':
x++;
break;
}
}
int main(int argc, char* argv[])
{
string S;
cin>>S;
for (int i=0;i<S.size();i++){
move(S[i]);
}
double dist=sqrt((double)(x*x+y*y));
if (dist==(int)dist){
cout<<dist<<endl;
}else{
printf("%.5lf\n",dist);
}
return 0;
}