結果
| 問題 |
No.759 悪くない忘年会にしような!
|
| コンテスト | |
| ユーザー |
matsu7874
|
| 提出日時 | 2018-12-02 16:58:46 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 1,463 bytes |
| コンパイル時間 | 209 ms |
| コンパイル使用メモリ | 12,800 KB |
| 実行使用メモリ | 13,056 KB |
| 最終ジャッジ日時 | 2024-09-13 11:57:03 |
| 合計ジャッジ時間 | 6,406 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 WA * 2 |
| other | AC * 9 WA * 36 RE * 19 |
ソースコード
def main():
n = int(input())
assert 0 <= n <= 10**4
points = list(set(tuple(map(int, input().split())) for i in range(n)))
assert len(points) == n
for p,t,r in points:
assert 0 <= p <= 10**4
assert 0 <= t <= 10**4
assert 0 <= r <= 10**4
is_efficient = [True for i in range(n)]
for i in range(n - 1):
if not is_efficient[i]:
continue
for j in range(i + 1, n):
if not is_efficient[j]:
continue
if any([
points[i][0] > points[j][0] and points[i][1] >= points[j][1] and points[i][2] >= points[j][2],
points[i][0] >= points[j][0] and points[i][1] > points[j][1] and points[i][2] >= points[j][2],
points[i][0] >= points[j][0] and points[i][1] >= points[j][1] and points[i][2] > points[j][2],
]):
is_efficient[j] = False
elif any([
points[i][0] < points[j][0] and points[i][1] <= points[j][1] and points[i][2] <= points[j][2],
points[i][0] <= points[j][0] and points[i][1] < points[j][1] and points[i][2] <= points[j][2],
points[i][0] <= points[j][0] and points[i][1] <= points[j][1] and points[i][2] < points[j][2],
]):
is_efficient[i] = False
break
for i in range(n):
if is_efficient[i]:
print(i + 1)
if __name__ == '__main__':
main()
matsu7874