結果

問題 No.113 宝探し
ユーザー GoryudyumaGoryudyuma
提出日時 2015-03-08 02:56:45
言語 PHP
(8.3.4)
結果
AC  
実行時間 36 ms / 5,000 ms
コード長 293 bytes
コンパイル時間 245 ms
コンパイル使用メモリ 31,016 KB
実行使用メモリ 31,508 KB
最終ジャッジ日時 2024-11-16 20:41:41
合計ジャッジ時間 2,288 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
31,204 KB
testcase_01 AC 35 ms
31,376 KB
testcase_02 AC 33 ms
31,216 KB
testcase_03 AC 34 ms
31,148 KB
testcase_04 AC 32 ms
30,956 KB
testcase_05 AC 33 ms
31,304 KB
testcase_06 AC 32 ms
31,156 KB
testcase_07 AC 32 ms
31,040 KB
testcase_08 AC 34 ms
31,272 KB
testcase_09 AC 33 ms
30,952 KB
testcase_10 AC 32 ms
31,164 KB
testcase_11 AC 34 ms
31,508 KB
testcase_12 AC 36 ms
31,204 KB
testcase_13 AC 35 ms
31,084 KB
testcase_14 AC 34 ms
31,236 KB
testcase_15 AC 34 ms
30,976 KB
testcase_16 AC 32 ms
31,012 KB
testcase_17 AC 33 ms
31,236 KB
testcase_18 AC 33 ms
31,064 KB
testcase_19 AC 35 ms
31,048 KB
testcase_20 AC 34 ms
31,152 KB
testcase_21 AC 33 ms
31,164 KB
testcase_22 AC 33 ms
30,972 KB
testcase_23 AC 32 ms
31,068 KB
testcase_24 AC 33 ms
31,264 KB
testcase_25 AC 32 ms
31,132 KB
testcase_26 AC 32 ms
30,920 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
$S=  trim(fgets(STDIN));
$ans=array(0,0);
for($i=0;$i<strlen($S);$i++){
    switch ($S[$i]){
        case 'E' :$ans[0]++;break;
        case 'W':$ans[0]--;break;
        case 'N':$ans[1]++;break;
        case 'S':$ans[1]--;break;
    }
}
echo sqrt(pow($ans[0],2)+pow($ans[1],2)).PHP_EOL;
0