結果

問題 No.647 明太子
ユーザー ApoiApoi
提出日時 2019-02-02 08:20:44
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 3,375 ms / 4,500 ms
コード長 613 bytes
コンパイル時間 344 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 12,800 KB
最終ジャッジ日時 2024-11-25 20:34:45
合計ジャッジ時間 10,487 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,624 KB
testcase_01 AC 27 ms
10,624 KB
testcase_02 AC 26 ms
10,624 KB
testcase_03 AC 27 ms
10,624 KB
testcase_04 AC 27 ms
10,624 KB
testcase_05 AC 27 ms
10,752 KB
testcase_06 AC 27 ms
10,624 KB
testcase_07 AC 28 ms
10,624 KB
testcase_08 AC 28 ms
10,624 KB
testcase_09 AC 52 ms
10,752 KB
testcase_10 AC 82 ms
10,752 KB
testcase_11 AC 42 ms
10,880 KB
testcase_12 AC 69 ms
10,752 KB
testcase_13 AC 132 ms
10,880 KB
testcase_14 AC 1,050 ms
12,416 KB
testcase_15 AC 181 ms
11,136 KB
testcase_16 AC 68 ms
10,752 KB
testcase_17 AC 1,387 ms
12,416 KB
testcase_18 AC 1,558 ms
12,544 KB
testcase_19 AC 400 ms
12,288 KB
testcase_20 AC 447 ms
12,032 KB
testcase_21 AC 179 ms
11,264 KB
testcase_22 AC 3,375 ms
12,800 KB
testcase_23 AC 32 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# coding: utf-8
member = int(input())
member_like = []
for i in range(member):
    member_like.append(list(map(int, input().split())))
mentai = int(input())
kind = []
for i in range(mentai):
    kind.append(list(map(int, input().split())))
bought_mentai = [0 for i in range(mentai)]
for j in range(member):
    for k in range(mentai):
        if (member_like[j][0] >= kind[k][0]) and (member_like[j][1] <= kind[k][1]):
            bought_mentai[k] += 1
if max(bought_mentai) == 0:
    print(0)
else:
    a = [m for m, x in enumerate(bought_mentai) if x == max(bought_mentai)]
    for n in a:
        print(n + 1)
0