結果

問題 No.642 Two Operations No.1
ユーザー nobigomu
提出日時 2018-04-13 00:04:31
言語 Lua
(LuaJit 2.1.1734355927)
結果
WA  
実行時間 -
コード長 125 bytes
コンパイル時間 150 ms
コンパイル使用メモリ 7,072 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-06-26 21:36:18
合計ジャッジ時間 670 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 6 WA * 9
権限があれば一括ダウンロードができます

ソースコード

diff #

print((function (n)
	for i=0,30 do
		local t = 2^i
		if n <= t then
			return i + t - n
		end
	end
end)(io.stdin:read("*n")))
0