結果

問題 No.647 明太子
ユーザー maspymaspy
提出日時 2020-01-29 21:40:12
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 523 ms / 4,500 ms
コード長 486 bytes
コンパイル時間 109 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 44,592 KB
最終ジャッジ日時 2024-09-16 02:39:27
合計ジャッジ時間 14,545 ms
ジャッジサーバーID
(参考情報)
judge6 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 475 ms
44,336 KB
testcase_01 AC 492 ms
44,340 KB
testcase_02 AC 486 ms
44,336 KB
testcase_03 AC 495 ms
44,472 KB
testcase_04 AC 482 ms
44,476 KB
testcase_05 AC 479 ms
43,956 KB
testcase_06 AC 478 ms
44,352 KB
testcase_07 AC 482 ms
44,212 KB
testcase_08 AC 484 ms
44,340 KB
testcase_09 AC 498 ms
44,472 KB
testcase_10 AC 475 ms
44,344 KB
testcase_11 AC 496 ms
44,336 KB
testcase_12 AC 484 ms
44,344 KB
testcase_13 AC 484 ms
44,352 KB
testcase_14 AC 491 ms
44,468 KB
testcase_15 AC 498 ms
44,464 KB
testcase_16 AC 493 ms
44,212 KB
testcase_17 AC 507 ms
44,340 KB
testcase_18 AC 509 ms
44,336 KB
testcase_19 AC 507 ms
44,464 KB
testcase_20 AC 495 ms
44,592 KB
testcase_21 AC 504 ms
44,220 KB
testcase_22 AC 523 ms
44,340 KB
testcase_23 AC 486 ms
44,340 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines

import numpy as np

N = int(readline())
data = np.array(read().split(),np.int64)
AB = data[:N+N]
A = AB[::2]
B = AB[1::2]
XY = data[N+N+1:]
X = XY[::2]
Y = XY[1::2]

count = np.array([np.count_nonzero((A >= x) & (B <= y)) for x,y in zip(X,Y)])

x = count.max()
answer = np.where(count == x)[0] + 1

if x == 0:
    print(0)
else:
    print('\n'.join(answer.astype(str)))
0