結果

問題 No.647 明太子
ユーザー fV9TwBhUoa9S3eVfV9TwBhUoa9S3eV
提出日時 2019-10-24 13:49:38
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 3,383 ms / 4,500 ms
コード長 1,001 bytes
コンパイル時間 93 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 11,648 KB
最終ジャッジ日時 2024-07-16 00:51:14
合計ジャッジ時間 10,474 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 31 ms
10,752 KB
testcase_03 AC 30 ms
10,752 KB
testcase_04 AC 31 ms
10,752 KB
testcase_05 AC 31 ms
10,752 KB
testcase_06 AC 31 ms
10,624 KB
testcase_07 AC 31 ms
10,752 KB
testcase_08 AC 32 ms
10,752 KB
testcase_09 AC 54 ms
10,752 KB
testcase_10 AC 84 ms
10,752 KB
testcase_11 AC 44 ms
10,880 KB
testcase_12 AC 73 ms
10,752 KB
testcase_13 AC 125 ms
10,880 KB
testcase_14 AC 1,028 ms
11,520 KB
testcase_15 AC 171 ms
10,752 KB
testcase_16 AC 65 ms
10,624 KB
testcase_17 AC 1,367 ms
11,520 KB
testcase_18 AC 1,440 ms
11,648 KB
testcase_19 AC 399 ms
11,520 KB
testcase_20 AC 454 ms
11,264 KB
testcase_21 AC 185 ms
11,008 KB
testcase_22 AC 3,383 ms
11,648 KB
testcase_23 AC 36 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# No.647 明太子
n = int(input())        # 明太子同好会メンバーの数
a = []                  # j番目のメンバはAj円以内で
b = []                  # 辛さがBj以上の明太子を見ると購入せずにはいられない

for i in range(n):
    tmp = [int(s) for s in input().split()]
    a.append(tmp[0])
    b.append(tmp[1])

m = int(input())        # 明太子直売所ではM種類の明太子が販売されている
x = []                  # i番目の明太子の値段はXi円、
y = []                  # 辛さはYiである。

for i in range(m):
    tmp = [int(s) for s in input().split()]
    x.append(tmp[0])
    y.append(tmp[1])

bought = [0] * m

for i in range(n):
    for j in range(m):
        if x[j] <= a[i] and y[j] >= b[i]:
            bought[j] += 1

if max(bought) == 0:
    print(0)
elif bought.count(max(bought)) > 1:
    for i in range(m):
        if bought[i] == max(bought):
            print(i + 1)
else:
    print(bought.index(max(bought)) + 1)
0