結果

問題 No.688 E869120 and Constructing Array 2
ユーザー nobigomunobigomu
提出日時 2018-05-21 15:54:09
言語 Lua
(LuaJit 2.1.1696795921)
結果
WA  
実行時間 -
コード長 384 bytes
コンパイル時間 151 ms
コンパイル使用メモリ 6,940 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-19 16:23:22
合計ジャッジ時間 1,192 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 WA -
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 WA -
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 1 ms
5,376 KB
testcase_12 AC 2 ms
5,376 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