結果

問題 No.47 ポケットを叩くとビスケットが2倍
ユーザー butchi_ybutchi_y
提出日時 2014-10-22 01:06:47
言語 JavaScript
(node v21.7.1)
結果
WA  
実行時間 -
コード長 177 bytes
コンパイル時間 38 ms
コンパイル使用メモリ 5,332 KB
実行使用メモリ 42,368 KB
最終ジャッジ日時 2023-08-03 01:25:42
合計ジャッジ時間 2,969 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 78 ms
42,148 KB
testcase_01 AC 78 ms
42,216 KB
testcase_02 AC 75 ms
42,140 KB
testcase_03 AC 77 ms
42,368 KB
testcase_04 AC 79 ms
42,116 KB
testcase_05 WA -
testcase_06 AC 79 ms
42,320 KB
testcase_07 AC 78 ms
42,280 KB
testcase_08 AC 79 ms
42,268 KB
testcase_09 AC 77 ms
42,256 KB
testcase_10 AC 80 ms
42,132 KB
testcase_11 AC 78 ms
42,136 KB
testcase_12 AC 78 ms
42,144 KB
testcase_13 AC 78 ms
42,144 KB
testcase_14 AC 80 ms
42,080 KB
testcase_15 AC 77 ms
42,092 KB
testcase_16 AC 78 ms
42,240 KB
testcase_17 AC 80 ms
42,132 KB
testcase_18 AC 77 ms
42,116 KB
testcase_19 AC 78 ms
42,176 KB
testcase_20 AC 76 ms
42,124 KB
testcase_21 AC 77 ms
42,240 KB
testcase_22 AC 77 ms
42,228 KB
testcase_23 AC 76 ms
42,120 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

function Main(input) {
	n = parseInt(input);
	console.log('%d',(n-1).toString(2).length);
}
// Don't edit this line!
Main(require("fs").readFileSync("/dev/stdin", "utf8"));
0