結果

問題 No.113 宝探し
ユーザー じゃがりこじゃがりこ
提出日時 2018-08-19 01:50:28
言語 C
(gcc 12.3.0)
結果
WA  
実行時間 -
コード長 517 bytes
コンパイル時間 399 ms
コンパイル使用メモリ 31,744 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-04-25 03:01:36
合計ジャッジ時間 1,400 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 1 ms
5,376 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 1 ms
5,376 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 1 ms
5,376 KB
testcase_18 AC 1 ms
5,376 KB
testcase_19 AC 1 ms
5,376 KB
testcase_20 AC 1 ms
5,376 KB
testcase_21 AC 1 ms
5,376 KB
testcase_22 AC 1 ms
5,376 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main(void){
    int E = 0, N = 0, W = 0, S = 0, i,a,b,c,d;
    char S1[101];
    
    scanf("%s", S1);
    for (i = 0; S1[i] != 0; i++) {
    	if (S1[i] == 'E') {
    		E++;
    	}
    	else if (S1[i] == 'N') {
    		N++;
    	}
    	else if (S1[i] == 'W') {
    		W++;
    	}
    	else if (S1[i] == 'S') {
    		S++;
    	}
    }
    a = pow(W,2);
    b = pow(E, 2);
    c = pow(N, 2);
    d = pow(S, 2);
    printf("%lf", sqrt((double)(a + b + c + d)));
}
0