結果

問題 No.111 あばばばば
コンテスト
ユーザー nobigomu
提出日時 2018-04-12 01:05:21
言語 Lua
(LuaJit 2.1.1767980792)
コンパイル:
luajit -b _filename_ a.out
実行:
luajit _filename_
結果
AC  
実行時間 1 ms / 5,000 ms
コード長 258 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 164 ms
コンパイル使用メモリ 7,840 KB
実行使用メモリ 7,716 KB
最終ジャッジ日時 2026-03-13 17:02:53
合計ジャッジ時間 567 ms
ジャッジサーバーID
(参考情報)
judge3_0 / judge1_0
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 10
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

local ffi = require 'ffi'
local C = ffi.C

ffi.cdef [[
long atol(const char *);
int printf(const char *, ...);
]]

C.printf("%ld\n", (function (f, s)
	return f(s)
end)(function (s)
	local n = C.atol(s)
	return (n - 1LL) ^ 2LL / 4LL
end, io.stdin:read("*l")))
0