結果
問題 | No.678 2Dシューティングゲームの必殺ビーム |
ユーザー | 💕💖💞 |
提出日時 | 2018-08-07 22:24:56 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 682 bytes |
コンパイル時間 | 177 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 48,696 KB |
最終ジャッジ日時 | 2024-09-19 18:30:43 |
合計ジャッジ時間 | 11,391 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 520 ms
48,484 KB |
testcase_01 | AC | 517 ms
48,244 KB |
testcase_02 | AC | 492 ms
48,064 KB |
testcase_03 | AC | 497 ms
48,176 KB |
testcase_04 | AC | 517 ms
48,348 KB |
testcase_05 | WA | - |
testcase_06 | AC | 505 ms
47,988 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
ソースコード
import numpy as np n, lb, rb = map(int, input().split()) z = np.zeros( (1680+1,1280+1) ).astype(np.int16) xs = set() x_y_i = [] for i in range(n): target = i+1 x1, y1, x2, y2 = map(int, input().split()) x1 = max(x1,0) x2 = min(x2, 1280) y1 = max(y1, 0) y2 = min(y2, 1680) #print(x1, x2) z[y2, x1:x2+1] = target xs.add( x1) xs.add( x2 ) x_y_i.append( (x1, y1, i) ) x_y_i.append( (x2, y2, i) ) match = set() for x in xs: for dy in range(1680, 0-1, -1): if z[dy, x] != 0: #print(z[dy,x], dy, x) match.add( z[dy, x] ) break z[dy, x] = -1 #print(match) for i in range(n): if i+1 in match: print(1) else: print(0)