結果

問題 No.678 2Dシューティングゲームの必殺ビーム
ユーザー nobigomunobigomu
提出日時 2018-05-24 18:08:58
言語 Lua
(LuaJit 2.1.1696795921)
結果
WA  
実行時間 -
コード長 612 bytes
コンパイル時間 181 ms
コンパイル使用メモリ 5,336 KB
実行使用メモリ 4,380 KB
最終ジャッジ日時 2023-09-11 02:58:13
合計ジャッジ時間 1,213 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

local ffi = require 'ffi'
local C, ct = ffi.C, ffi.typeof 'int16_t[1]'
ffi.cdef 'int scanf(const char *, ...);'

do
local a,c1,c2,c3,c4 = {},ct(),ct(),ct(),ct()
local n,l,r = io.stdin:read("*n"),io.stdin:read("*n"),io.stdin:read("*n")
for i=1,n do
	C.scanf("%d%d%d%d",c1,c2,c3,c4) local xl,xr=c1[0],c3[0]
	a[i]={i,c4[0],function (x) return x>=xl and x<=xr end,r<xl or l>xr}
end
table.sort(a,function (a,b) return a[2]>b[2] end)
for i=l,r do
	for j,v in ipairs(a) do
		if v[3](i) then a[j][4]=true break end
	end
end
table.sort(a,function (a,b) return a[1]<b[1] end)
for i=1,n do print(a[i][4] and 1 or 0) end
end
0