結果

問題 No.647 明太子
ユーザー hedwig100hedwig100
提出日時 2020-05-15 19:51:44
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 3,662 ms / 4,500 ms
コード長 685 bytes
コンパイル時間 243 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 12,160 KB
最終ジャッジ日時 2024-09-19 06:16:35
合計ジャッジ時間 8,874 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,752 KB
testcase_01 AC 27 ms
10,624 KB
testcase_02 AC 27 ms
10,624 KB
testcase_03 AC 26 ms
10,624 KB
testcase_04 AC 27 ms
10,752 KB
testcase_05 AC 26 ms
10,624 KB
testcase_06 AC 27 ms
10,752 KB
testcase_07 AC 27 ms
10,752 KB
testcase_08 AC 27 ms
10,624 KB
testcase_09 AC 41 ms
10,752 KB
testcase_10 AC 61 ms
10,752 KB
testcase_11 AC 33 ms
10,752 KB
testcase_12 AC 50 ms
10,880 KB
testcase_13 AC 83 ms
11,008 KB
testcase_14 AC 700 ms
11,904 KB
testcase_15 AC 124 ms
10,880 KB
testcase_16 AC 53 ms
10,880 KB
testcase_17 AC 873 ms
11,904 KB
testcase_18 AC 941 ms
12,032 KB
testcase_19 AC 162 ms
11,904 KB
testcase_20 AC 184 ms
11,648 KB
testcase_21 AC 81 ms
11,008 KB
testcase_22 AC 3,662 ms
12,160 KB
testcase_23 AC 28 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(100000000)
MOD = 10 ** 9 + 7
INF = 10 ** 15

def main():  
    N = int(input())
    want = [tuple(map(int,input().split())) for _ in range(N)]
    M = int(input())
    mentaiko = [tuple(map(int,input().split())) for _ in range(M)]

    bought = [0] * M
    max_bought = 0
    for a,b in want:
        for i,(x,y) in enumerate(mentaiko):
            if x <= a and b <= y:
                bought[i] += 1
                max_bought = max(max_bought,bought[i])

    if max_bought == 0:
        print(0)
    else:
        ans = [i + 1 for i in range(M) if bought[i] == max_bought]
        print('\n'.join(map(str,ans)))
if __name__ == '__main__':
    main()
0