結果

問題 No.113 宝探し
ユーザー HiroakiSoftwareHiroakiSoftware
提出日時 2014-12-28 23:40:38
言語 C++11
(gcc 13.3.0)
結果
AC  
実行時間 1 ms / 5,000 ms
コード長 460 bytes
コンパイル時間 195 ms
コンパイル使用メモリ 31,360 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-16 20:36:04
合計ジャッジ時間 1,040 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 23
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:16:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   16 |         scanf("%s", MoveRoot);
      |         ~~~~~^~~~~~~~~~~~~~~~

ソースコード

diff #

/*
	yukicoder 113
	回答者:ヒロソフ
*/


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

int main(void){

	char MoveRoot[101];
	
	int NS = 0, EW = 0;
	
	scanf("%s", MoveRoot);

	for (int i = 0; MoveRoot[i] != '\0'; i++)
	{
		switch (MoveRoot[i])
		{
			case 'N':
				NS++;
				break;
			case 'S':
				NS--;
				break;
			case 'E':
				EW++;
				break;
			case 'W':
				EW--;
				break;
		}
	}

	printf("%.5f\n", sqrt((double) (NS * NS + EW * EW)));

	return 0;
}
0