結果

問題 No.647 明太子
ユーザー iad_2889iad_2889
提出日時 2019-05-16 02:11:37
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 2,577 ms / 4,500 ms
コード長 616 bytes
コンパイル時間 234 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 14,592 KB
最終ジャッジ日時 2024-09-15 06:08:11
合計ジャッジ時間 9,440 ms
ジャッジサーバーID
(参考情報)
judge6 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,496 KB
testcase_01 AC 28 ms
10,752 KB
testcase_02 AC 28 ms
10,624 KB
testcase_03 AC 28 ms
10,624 KB
testcase_04 AC 29 ms
10,624 KB
testcase_05 AC 29 ms
10,752 KB
testcase_06 AC 30 ms
10,624 KB
testcase_07 AC 27 ms
10,752 KB
testcase_08 AC 29 ms
10,752 KB
testcase_09 AC 53 ms
10,880 KB
testcase_10 AC 76 ms
10,880 KB
testcase_11 AC 39 ms
10,752 KB
testcase_12 AC 68 ms
10,880 KB
testcase_13 AC 113 ms
11,136 KB
testcase_14 AC 963 ms
13,824 KB
testcase_15 AC 162 ms
11,264 KB
testcase_16 AC 61 ms
10,880 KB
testcase_17 AC 1,279 ms
14,080 KB
testcase_18 AC 1,259 ms
14,208 KB
testcase_19 AC 484 ms
14,080 KB
testcase_20 AC 514 ms
13,312 KB
testcase_21 AC 195 ms
11,904 KB
testcase_22 AC 2,577 ms
14,592 KB
testcase_23 AC 31 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def is_buy(budget,taste):
    def _(price,hot):
        return budget >= price and taste <= hot
    return _

N = int(input())
members = [is_buy(*map(int,input().split())) for x in range(N)]
M = int(input())

mentaiko = {}
popular = 0
for i in range(M):
    price,hot = map(int,input().split())
    cnt = 0
    for member in members:
        if member(price,hot):
            cnt+=1
    if cnt:
        mentaiko[i + 1] = cnt
        popular = max(popular,cnt)

if mentaiko:
    mentaiko = sorted([x for x,y in mentaiko.items() if y == popular])
    for miracle in mentaiko:
        print(miracle)
else:
    print(0)
0