結果

問題 No.647 明太子
ユーザー liny_tailliny_tail
提出日時 2020-09-18 12:57:33
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 2,538 ms / 4,500 ms
コード長 528 bytes
コンパイル時間 406 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 11,904 KB
最終ジャッジ日時 2024-06-22 07:56:45
合計ジャッジ時間 7,971 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,752 KB
testcase_01 AC 28 ms
10,880 KB
testcase_02 AC 25 ms
10,752 KB
testcase_03 AC 24 ms
10,880 KB
testcase_04 AC 25 ms
10,752 KB
testcase_05 AC 25 ms
10,752 KB
testcase_06 AC 26 ms
10,752 KB
testcase_07 AC 26 ms
10,752 KB
testcase_08 AC 25 ms
10,752 KB
testcase_09 AC 45 ms
10,880 KB
testcase_10 AC 64 ms
10,880 KB
testcase_11 AC 34 ms
10,752 KB
testcase_12 AC 55 ms
10,880 KB
testcase_13 AC 97 ms
11,008 KB
testcase_14 AC 762 ms
11,648 KB
testcase_15 AC 131 ms
10,880 KB
testcase_16 AC 52 ms
10,880 KB
testcase_17 AC 996 ms
11,648 KB
testcase_18 AC 1,059 ms
11,648 KB
testcase_19 AC 359 ms
11,648 KB
testcase_20 AC 367 ms
11,520 KB
testcase_21 AC 152 ms
11,008 KB
testcase_22 AC 2,538 ms
11,904 KB
testcase_23 AC 27 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input().strip())
A, B = [], []
for i in range(N):
  tmp = list(map(int, input().split()))
  A.append(tmp[0])
  B.append(tmp[1])

M = int(input().strip())
X, Y = [], []
for i in range(M):
  tmp = list(map(int, input().split()))
  X.append(tmp[0])
  Y.append(tmp[1])

lst = [0] * M

for n in range(len(X)):
  x, y = X[n], Y[n]
  for a, b in zip(A, B):
    if x <= a and y >= b:
      lst[n] += 1

m = max(lst)
cnt = 0
for n, i in enumerate(lst):
  if i == m and m > 0:
    print(n+1)
    cnt += 1

if cnt == 0:
  print(0)
0