結果

問題 No.647 明太子
ユーザー Pump0129Pump0129
提出日時 2018-05-17 01:46:03
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 2,633 ms / 4,500 ms
コード長 610 bytes
コンパイル時間 81 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 11,904 KB
最終ジャッジ日時 2024-06-28 13:26:08
合計ジャッジ時間 8,519 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,752 KB
testcase_01 AC 29 ms
10,752 KB
testcase_02 AC 29 ms
10,752 KB
testcase_03 AC 32 ms
10,752 KB
testcase_04 AC 32 ms
10,752 KB
testcase_05 AC 32 ms
10,752 KB
testcase_06 AC 30 ms
10,624 KB
testcase_07 AC 30 ms
10,624 KB
testcase_08 AC 31 ms
10,752 KB
testcase_09 AC 50 ms
10,752 KB
testcase_10 AC 73 ms
10,624 KB
testcase_11 AC 39 ms
10,752 KB
testcase_12 AC 64 ms
10,624 KB
testcase_13 AC 102 ms
10,752 KB
testcase_14 AC 847 ms
11,776 KB
testcase_15 AC 145 ms
11,008 KB
testcase_16 AC 59 ms
10,624 KB
testcase_17 AC 1,021 ms
11,904 KB
testcase_18 AC 1,138 ms
11,776 KB
testcase_19 AC 364 ms
11,904 KB
testcase_20 AC 412 ms
11,648 KB
testcase_21 AC 160 ms
11,008 KB
testcase_22 AC 2,633 ms
11,904 KB
testcase_23 AC 32 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

if __name__ == "__main__":
    n = int(input())
    member_list = []
    for i in range(n):
        member_list.append(tuple(map(int, input().split(" "))))
    m = int(input())
    ans_list = []
    for i in range(m):
        x, y = tuple(map(int, input().split(" ")))
        cnt = 0
        for a, b in member_list:
            if x <= a and b <= y:
                cnt += 1
        ans_list.append(cnt)

    if max(ans_list) == 0:
        print(0)
    else:
        ans_num = max(ans_list)
        for i in range(m):
            if ans_list[i] == ans_num:
                print(i + 1)
0