結果

問題 No.647 明太子
ユーザー iad_2889iad_2889
提出日時 2019-05-16 01:52:40
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 4,417 ms / 4,500 ms
コード長 841 bytes
コンパイル時間 128 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 12,416 KB
最終ジャッジ日時 2024-09-14 20:55:19
合計ジャッジ時間 12,638 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 31 ms
10,752 KB
testcase_02 AC 31 ms
10,496 KB
testcase_03 AC 30 ms
10,624 KB
testcase_04 AC 31 ms
10,624 KB
testcase_05 AC 31 ms
10,624 KB
testcase_06 AC 30 ms
10,624 KB
testcase_07 AC 32 ms
10,624 KB
testcase_08 AC 31 ms
10,624 KB
testcase_09 AC 60 ms
10,752 KB
testcase_10 AC 91 ms
10,752 KB
testcase_11 AC 44 ms
10,880 KB
testcase_12 AC 77 ms
10,752 KB
testcase_13 AC 142 ms
11,008 KB
testcase_14 AC 1,299 ms
11,904 KB
testcase_15 AC 202 ms
10,880 KB
testcase_16 AC 72 ms
10,752 KB
testcase_17 AC 1,641 ms
12,160 KB
testcase_18 AC 1,815 ms
12,288 KB
testcase_19 AC 530 ms
11,904 KB
testcase_20 AC 589 ms
11,776 KB
testcase_21 AC 227 ms
11,264 KB
testcase_22 AC 4,417 ms
12,416 KB
testcase_23 AC 32 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class ClubMember:
    buy = {}
    def __init__(self,budget,hot):
        self.budget = budget
        self.hot = hot

    def choice(self,number,price,hot):
        if price <= self.budget and hot >= self.hot:
            ClubMember.buy.setdefault(number,0)
            ClubMember.buy[number]+=1

    @classmethod
    def miracle_mentaiko(cls):
        if not cls.buy:
            return []
        popular = max(cls.buy.values())
        return sorted([x for x,y in cls.buy.items() if y == popular])


N = int(input())
members = [ClubMember(*map(int,input().split())) for x in range(N)]
M = int(input())
for i in range(M):
    price,hot = map(int,input().split())
    for member in members:
        member.choice(i + 1,price,hot)
miracle = ClubMember.miracle_mentaiko()
if miracle:
    for i in miracle:
        print(i)
else:
    print(0)
0