結果

問題 No.688 E869120 and Constructing Array 2
ユーザー nobigomunobigomu
提出日時 2018-05-21 15:54:09
言語 Lua
(LuaJit 2.1.1696795921)
結果
WA  
実行時間 -
コード長 384 bytes
コンパイル時間 174 ms
コンパイル使用メモリ 5,332 KB
実行使用メモリ 4,384 KB
最終ジャッジ日時 2023-09-26 22:37:41
合計ジャッジ時間 1,885 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,376 KB
testcase_01 AC 1 ms
4,380 KB
testcase_02 AC 1 ms
4,380 KB
testcase_03 WA -
testcase_04 AC 1 ms
4,376 KB
testcase_05 AC 1 ms
4,380 KB
testcase_06 AC 1 ms
4,376 KB
testcase_07 AC 1 ms
4,380 KB
testcase_08 AC 1 ms
4,380 KB
testcase_09 WA -
testcase_10 AC 1 ms
4,384 KB
testcase_11 AC 2 ms
4,376 KB
testcase_12 AC 1 ms
4,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

io.write((function (k)
	local a,b,m,n={},{},2,0
	for i=30,3,-1 do table.insert(a,{i*(i-1)/2,i}) end
	for i=28,1,-1 do table.insert(b,{2^i,i}) end
	for _,v in ipairs(a) do if k%v[1]==0 then k,m=k/v[1],v[2] break end end
	for _,v in ipairs(b) do if k%v[1]==0 then n=v[2] break end end
	return m+n,"\n",(string.rep("1 ",m) .. string.rep("0 ",n)):sub(1,-2),"\n"
end)(io.stdin:read("*n")))
0