結果

問題 No.678 2Dシューティングゲームの必殺ビーム
ユーザー pluto77pluto77
提出日時 2018-04-30 08:38:44
言語 Python2
(2.7.18)
結果
WA  
実行時間 -
コード長 388 bytes
コンパイル時間 94 ms
コンパイル使用メモリ 6,912 KB
実行使用メモリ 6,272 KB
最終ジャッジ日時 2024-06-27 23:47:44
合計ジャッジ時間 1,454 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#yuki678

N,xLB,xRB=map(int,raw_input().split())
XL,YU,XR,YD=[],[],[],[]
for i in xrange(N):
 xl,yu,xr,yd=map(int,raw_input().split())
 XL.append(xl)
 YU.append(yu)
 XR.append(xr)
 YD.append(yd)
res=[0]*N
for x in xrange(xLB,xRB+1):
 v=[]
 for i in xrange(N):
  if XL[i]<=x and x<=XR[i]:
   v.append([-YD[i],i])
  v.sort()
  if len(v):
   res[v[0][1]]=1
for i in xrange(N):
 print res[i]
0