結果

問題 No.647 明太子
ユーザー Lo_OTLo_OT
提出日時 2018-03-29 10:32:18
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 763 bytes
コンパイル時間 303 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 12,928 KB
最終ジャッジ日時 2024-06-25 20:42:08
合計ジャッジ時間 9,329 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,752 KB
testcase_01 AC 33 ms
10,752 KB
testcase_02 AC 33 ms
10,752 KB
testcase_03 AC 33 ms
10,880 KB
testcase_04 AC 34 ms
10,752 KB
testcase_05 AC 33 ms
10,880 KB
testcase_06 AC 33 ms
10,880 KB
testcase_07 AC 34 ms
10,880 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 855 ms
12,544 KB
testcase_15 AC 162 ms
11,136 KB
testcase_16 WA -
testcase_17 AC 1,073 ms
12,672 KB
testcase_18 AC 1,152 ms
12,672 KB
testcase_19 AC 405 ms
12,416 KB
testcase_20 AC 411 ms
12,288 KB
testcase_21 AC 172 ms
11,392 KB
testcase_22 AC 2,528 ms
12,928 KB
testcase_23 WA -
権限があれば一括ダウンロードができます

ソースコード

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
    if current != 0:
        numOfBuy.append(current)
    # print(f'{index} : menta = {current}')

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