結果

問題 No.647 明太子
ユーザー Lo_OTLo_OT
提出日時 2018-03-29 10:37:33
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 2,623 ms / 4,500 ms
コード長 744 bytes
コンパイル時間 234 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 12,800 KB
最終ジャッジ日時 2024-06-27 02:54:04
合計ジャッジ時間 8,811 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,752 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 29 ms
10,624 KB
testcase_04 AC 29 ms
10,624 KB
testcase_05 AC 29 ms
10,752 KB
testcase_06 AC 29 ms
10,624 KB
testcase_07 AC 30 ms
10,624 KB
testcase_08 AC 30 ms
10,752 KB
testcase_09 AC 50 ms
10,752 KB
testcase_10 AC 70 ms
10,752 KB
testcase_11 AC 38 ms
10,624 KB
testcase_12 AC 64 ms
10,752 KB
testcase_13 AC 103 ms
11,136 KB
testcase_14 AC 825 ms
12,416 KB
testcase_15 AC 148 ms
11,136 KB
testcase_16 AC 61 ms
10,752 KB
testcase_17 AC 1,140 ms
12,800 KB
testcase_18 AC 1,151 ms
12,544 KB
testcase_19 AC 383 ms
12,288 KB
testcase_20 AC 428 ms
12,160 KB
testcase_21 AC 164 ms
11,392 KB
testcase_22 AC 2,623 ms
12,800 KB
testcase_23 AC 32 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

member = []
menta = []

# 10^4
n = int(input())
for _ in range(n):
    member.append(list(map(int, input().split())))

# 10^3
m = int(input())
for _ in range(m):
    menta.append(list(map(int, input().split())))

# print(member)
# print(menta)

# 10^3 * 10^4
numOfBuy = []
for index, (x, y) in enumerate(menta):
    # print('menta ', index, x, y)
    current = 0
    for a, b in member:
        # print(f'member (yen, spice) = ({a}, {b})')
        if x <= a and b <= y:
            current += 1
    numOfBuy.append(current)
    # print(f'{index} : menta = {current}')

# print(numOfBuy)
if max(numOfBuy) == 0:
    print(0)
else:
    max = max(numOfBuy)
    for idx, num in enumerate(numOfBuy):
        if num == max:
            print(idx + 1)
0