結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,752 KB
testcase_01 AC 27 ms
10,752 KB
testcase_02 WA -
testcase_03 AC 26 ms
10,880 KB
testcase_04 AC 27 ms
10,752 KB
testcase_05 AC 26 ms
10,880 KB
testcase_06 AC 27 ms
10,880 KB
testcase_07 AC 28 ms
10,752 KB
testcase_08 AC 28 ms
10,752 KB
testcase_09 AC 47 ms
10,880 KB
testcase_10 AC 66 ms
10,752 KB
testcase_11 AC 36 ms
10,752 KB
testcase_12 AC 55 ms
10,752 KB
testcase_13 AC 95 ms
11,008 KB
testcase_14 AC 790 ms
11,648 KB
testcase_15 AC 128 ms
10,880 KB
testcase_16 AC 52 ms
10,752 KB
testcase_17 AC 1,000 ms
11,648 KB
testcase_18 AC 1,069 ms
11,648 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 2,544 ms
11,776 KB
testcase_23 AC 28 ms
10,880 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)
for n, i in enumerate(lst):
  if i == m and m > 0:
    print(n+1)
0