結果
問題 | No.49 算数の宿題 |
ユーザー | butchi_y |
提出日時 | 2014-10-23 23:40:10 |
言語 | JavaScript (node v21.7.1) |
結果 |
RE
|
実行時間 | - |
コード長 | 553 bytes |
コンパイル時間 | 115 ms |
コンパイル使用メモリ | 6,944 KB |
実行使用メモリ | 40,064 KB |
最終ジャッジ日時 | 2024-06-02 07:07:13 |
合計ジャッジ時間 | 1,086 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
ソースコード
function Main(input) { var str = input.split('\n'); var oArr = str.match(/[\*\+]/g); var nArr = str.match(/[0-9]+/g); var tmp = +nArr[0]; var i; var len = oArr.length; for(i = 0; i < len; i++) { if(false) { } else if(oArr[i] === '*') { tmp += +nArr[i + 1]; } else if(oArr[i] === '+') { tmp *= +nArr[i + 1]; } } var ans = tmp; console.log(ans); } // Don't edit this line! Main(require("fs").readFileSync("/dev/stdin", "utf8"));