結果

問題 No.113 宝探し
ユーザー takeya_okinotakeya_okino
提出日時 2017-07-14 11:50:22
言語 PHP
(8.3.4)
結果
AC  
実行時間 42 ms / 5,000 ms
コード長 234 bytes
コンパイル時間 2,496 ms
コンパイル使用メモリ 32,276 KB
実行使用メモリ 31,404 KB
最終ジャッジ日時 2024-11-16 21:35:10
合計ジャッジ時間 2,373 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
31,156 KB
testcase_01 AC 35 ms
30,828 KB
testcase_02 AC 36 ms
31,236 KB
testcase_03 AC 36 ms
31,136 KB
testcase_04 AC 42 ms
31,020 KB
testcase_05 AC 37 ms
30,972 KB
testcase_06 AC 36 ms
31,236 KB
testcase_07 AC 36 ms
30,948 KB
testcase_08 AC 38 ms
31,208 KB
testcase_09 AC 38 ms
31,300 KB
testcase_10 AC 37 ms
31,164 KB
testcase_11 AC 37 ms
31,008 KB
testcase_12 AC 37 ms
31,320 KB
testcase_13 AC 38 ms
31,024 KB
testcase_14 AC 40 ms
31,060 KB
testcase_15 AC 38 ms
31,176 KB
testcase_16 AC 36 ms
30,908 KB
testcase_17 AC 35 ms
31,388 KB
testcase_18 AC 35 ms
31,148 KB
testcase_19 AC 34 ms
31,052 KB
testcase_20 AC 35 ms
31,056 KB
testcase_21 AC 35 ms
30,924 KB
testcase_22 AC 35 ms
30,904 KB
testcase_23 AC 36 ms
31,196 KB
testcase_24 AC 36 ms
30,756 KB
testcase_25 AC 36 ms
30,952 KB
testcase_26 AC 34 ms
31,404 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
$s = trim(fgets(STDIN));
$x = 0;
$y = 0;
for($i = 0; $i < strlen($s); $i++) {
  $n = substr($s, $i, 1);
  if($n == 'N') $y++;
  if($n == 'E') $x++;
  if($n == 'W') $x--;
  if($n == 'S') $y--;
}
print(sqrt($x * $x + $y * $y));
?>
0