結果

問題 No.678 2Dシューティングゲームの必殺ビーム
ユーザー pluto77pluto77
提出日時 2018-09-08 09:03:53
言語 Python2
(2.7.18)
結果
AC  
実行時間 50 ms / 2,000 ms
コード長 414 bytes
コンパイル時間 548 ms
コンパイル使用メモリ 6,912 KB
実行使用メモリ 6,400 KB
最終ジャッジ日時 2024-05-08 22:27:15
合計ジャッジ時間 1,808 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 12 ms
6,272 KB
testcase_01 AC 12 ms
6,400 KB
testcase_02 AC 12 ms
6,272 KB
testcase_03 AC 12 ms
6,144 KB
testcase_04 AC 12 ms
6,400 KB
testcase_05 AC 15 ms
6,272 KB
testcase_06 AC 16 ms
6,272 KB
testcase_07 AC 16 ms
6,272 KB
testcase_08 AC 19 ms
6,400 KB
testcase_09 AC 17 ms
6,400 KB
testcase_10 AC 21 ms
6,272 KB
testcase_11 AC 20 ms
6,272 KB
testcase_12 AC 20 ms
6,272 KB
testcase_13 AC 29 ms
6,400 KB
testcase_14 AC 30 ms
6,400 KB
testcase_15 AC 50 ms
6,400 KB
testcase_16 AC 17 ms
6,272 KB
testcase_17 AC 32 ms
6,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#yuki678

n,lb,rb=map(int,raw_input().split())
f=[-1 for i in xrange(1281)]
a=[-1 for i in xrange(1281)]
for i in xrange(n):
 xl,yu,xr,yd=map(int,raw_input().split())
 if xl<0: xl=0
 if xr>1280: xr=1280
 if yd>1680: yd=1680
 for j in xrange(xl,xr+1):
  if f[j]<yd:
   f[j]=yd
   a[j]=i
for i in xrange(n):
 for j in xrange(1281):
  if j>=lb and j<=rb:
   if a[j]==i:
    print 1
    break
  if j==1280:
   print 0
0