結果

問題 No.1806 Rotating Golem
ユーザー kusirakusirakusirakusira
提出日時 2022-02-09 17:12:12
言語 JavaScript
(node v21.7.1)
結果
AC  
実行時間 61 ms / 2,000 ms
コード長 557 bytes
コンパイル時間 74 ms
コンパイル使用メモリ 7,072 KB
実行使用メモリ 41,064 KB
最終ジャッジ日時 2024-06-24 21:17:42
合計ジャッジ時間 3,384 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 58 ms
39,040 KB
testcase_01 AC 60 ms
38,912 KB
testcase_02 AC 58 ms
39,040 KB
testcase_03 AC 59 ms
39,424 KB
testcase_04 AC 59 ms
39,424 KB
testcase_05 AC 57 ms
39,296 KB
testcase_06 AC 61 ms
39,168 KB
testcase_07 AC 59 ms
39,040 KB
testcase_08 AC 60 ms
39,040 KB
testcase_09 AC 58 ms
41,064 KB
testcase_10 AC 58 ms
38,912 KB
testcase_11 AC 59 ms
39,168 KB
testcase_12 AC 59 ms
39,040 KB
testcase_13 AC 60 ms
38,912 KB
testcase_14 AC 58 ms
39,040 KB
testcase_15 AC 60 ms
38,912 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

const main = ls => {
    const A = ls.splice(0,2);
    A.map((a,i)=>{
        switch (a) {
            case "N":
            A[i]=0;
                break;
            case "E":
            A[i]=1;
                break;
            case "S":
            A[i]=2;
                break;
            case "W":
            A[i]=3;
                break;
        }
    })
    if(A[1]-A[0]>=0){
        console.log(A[1]-A[0]);
    }else{
        console.log(4+(A[1]-A[0]));
    }    
}
 
main(require('fs').readFileSync('/dev/stdin', 'utf8').trim().split('\n'));
0