結果
問題 | No.46 はじめのn歩 |
ユーザー | yuki-One300 |
提出日時 | 2017-12-05 13:37:05 |
言語 | JavaScript (node v21.7.1) |
結果 |
RE
|
実行時間 | - |
コード長 | 474 bytes |
コンパイル時間 | 106 ms |
コンパイル使用メモリ | 6,820 KB |
実行使用メモリ | 40,192 KB |
最終ジャッジ日時 | 2024-10-13 00:28:43 |
合計ジャッジ時間 | 1,105 ms |
ジャッジサーバーID (参考情報) |
judge5 / 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 | - |
ソースコード
var str = window.prompt("数列を入力してください。数字の間には','を入力してください。") var strbox = str.split(",") var intbox = []; for(var i=0; i<strbox.length; i++){ intbox[i] = parseInt(strbox[i]); } var x = intbox[0]; var y = intbox[1]; var z; if(y%x != 0){ z = Math.floor(y/x)+1; }else{ z = Math.floor(y/x); } document.getElementById("result").textContent= z;