結果
問題 | No.678 2Dシューティングゲームの必殺ビーム |
ユーザー | kohei2019 |
提出日時 | 2022-03-11 00:59:41 |
言語 | PyPy3 (7.3.15) |
結果 |
RE
|
実行時間 | - |
コード長 | 380 bytes |
コンパイル時間 | 630 ms |
コンパイル使用メモリ | 82,368 KB |
実行使用メモリ | 67,756 KB |
最終ジャッジ日時 | 2024-09-15 00:55:58 |
合計ジャッジ時間 | 2,169 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 38 ms
52,224 KB |
testcase_01 | AC | 37 ms
52,096 KB |
testcase_02 | AC | 40 ms
51,712 KB |
testcase_03 | AC | 37 ms
51,712 KB |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | WA | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | AC | 41 ms
57,856 KB |
testcase_12 | AC | 42 ms
57,728 KB |
testcase_13 | AC | 44 ms
58,112 KB |
testcase_14 | AC | 43 ms
59,008 KB |
testcase_15 | WA | - |
testcase_16 | AC | 41 ms
57,472 KB |
testcase_17 | RE | - |
ソースコード
N,L,R = map(int,input().split()) INF = float('INF') ls = [-1]*(1281) ll = [] for i in range(N): ll.append(list(map(int,input().split()))+[i]) ll.sort(key=lambda x:x[1]) for i in range(N): xl,yu,xr,yd,ind = ll[i] for j in range(xl,xr+1): ls[j] = ind la = [0]*N for i in range(L,R+1): if ls[i] == -1: continue la[ls[i]] = 1 print(*la,sep='\n')