結果

問題 No.647 明太子
ユーザー ApoiApoi
提出日時 2019-02-02 08:20:44
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 3,572 ms / 4,500 ms
コード長 613 bytes
コンパイル時間 152 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 12,928 KB
最終ジャッジ日時 2024-05-04 10:20:47
合計ジャッジ時間 11,617 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,624 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 31 ms
10,624 KB
testcase_04 AC 31 ms
10,880 KB
testcase_05 AC 31 ms
10,752 KB
testcase_06 AC 32 ms
10,880 KB
testcase_07 AC 31 ms
10,880 KB
testcase_08 AC 32 ms
10,752 KB
testcase_09 AC 57 ms
10,880 KB
testcase_10 AC 92 ms
11,008 KB
testcase_11 AC 47 ms
10,752 KB
testcase_12 AC 75 ms
10,880 KB
testcase_13 AC 143 ms
11,008 KB
testcase_14 AC 1,157 ms
12,416 KB
testcase_15 AC 200 ms
11,136 KB
testcase_16 AC 73 ms
10,880 KB
testcase_17 AC 1,560 ms
12,544 KB
testcase_18 AC 1,623 ms
12,544 KB
testcase_19 AC 457 ms
12,416 KB
testcase_20 AC 494 ms
12,160 KB
testcase_21 AC 196 ms
11,264 KB
testcase_22 AC 3,572 ms
12,928 KB
testcase_23 AC 36 ms
10,880 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