結果

問題 No.113 宝探し
ユーザー funakoshi
提出日時 2019-08-08 17:28:05
言語 C
(gcc 13.3.0)
結果
AC  
実行時間 1 ms / 5,000 ms
コード長 555 bytes
コンパイル時間 204 ms
コンパイル使用メモリ 30,976 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-16 22:08:26
合計ジャッジ時間 923 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 23
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <math.h>

int main(void)
{
    int n=0,e=0,w=0,s=0;
    char direction[120]="";
    scanf("%s",direction);
    for(int i=0;i<strlen(direction);i++)
    {
        if(direction[i]=='N')
        {
            n++;
        }
        if(direction[i]=='E')
        {
            e++;
        }
        if(direction[i]=='W')
        {
            e--;
        }
        if(direction[i]=='S')
        {
            n--;
        }
    }
    double ans = sqrt(n*n+e*e);
    printf("%.5lf",ans);
}
0