結果

問題 No.316 もっと刺激的なFizzBuzzをください
コンテスト
ユーザー nobigomu
提出日時 2018-08-06 19:04:49
言語 Lua
(LuaJit 2.1.1787165859)
コンパイル:
luajit -b _filename_ a.out
実行:
luajit _filename_
結果
AC  
実行時間 1 ms / 1,000 ms
+ 203µs
コード長 335 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 89 ms
コンパイル使用メモリ 7,724 KB
実行使用メモリ 9,744 KB
最終ジャッジ日時 2026-08-31 06:23:58
合計ジャッジ時間 1,935 ms
ジャッジサーバーID
(参考情報)
judge1_0 / judge3_0
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 33
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

print((function (f, n, a, b, c)
	function gcd(a,b) if b~=0 then return gcd(b,a%b) end return a end
	function lcm(a,b) return a/gcd(a,b)*b end
	return f(n/a)+f(n/b)+f(n/c)-f(n/lcm(a,b))-f(n/lcm(b,c))-f(n/lcm(c,a))+f(n/lcm(lcm(a,b),c))
end)(math.floor, io.stdin:read("*n"), io.stdin:read("*n"), io.stdin:read("*n"), io.stdin:read("*n")))
0