結果

問題 No.647 明太子
ユーザー hiragnhiragn
提出日時 2022-11-10 19:15:01
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 3,554 ms / 4,500 ms
コード長 465 bytes
コンパイル時間 345 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 15,096 KB
最終ジャッジ日時 2024-07-23 20:41:44
合計ジャッジ時間 8,136 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,752 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 30 ms
10,880 KB
testcase_03 AC 30 ms
10,752 KB
testcase_04 AC 30 ms
10,880 KB
testcase_05 AC 30 ms
10,752 KB
testcase_06 AC 30 ms
10,752 KB
testcase_07 AC 31 ms
10,880 KB
testcase_08 AC 31 ms
10,752 KB
testcase_09 AC 42 ms
10,880 KB
testcase_10 AC 57 ms
10,880 KB
testcase_11 AC 39 ms
10,880 KB
testcase_12 AC 51 ms
11,008 KB
testcase_13 AC 75 ms
11,136 KB
testcase_14 AC 611 ms
14,472 KB
testcase_15 AC 100 ms
11,264 KB
testcase_16 AC 49 ms
10,880 KB
testcase_17 AC 755 ms
14,612 KB
testcase_18 AC 790 ms
14,540 KB
testcase_19 AC 137 ms
12,416 KB
testcase_20 AC 139 ms
12,032 KB
testcase_21 AC 70 ms
11,264 KB
testcase_22 AC 3,554 ms
15,096 KB
testcase_23 AC 34 ms
10,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    n = int(input())
    lst = [list(map(int, input().split())) for _ in range(n)]

    m = int(input()) + 1  # 1-indexedにするため
    c = [0] * m
    for i in range(1, m):
        x, y = map(int, input().split())
        c[i] = len([{a, b} for a, b in lst if x <= a and y >= b])

    if max(c) == 0:
        print(0)
    else:
        for x in [i for i in range(m) if c[i] == max(c)]:
            print(x)


if __name__ == "__main__":
    main()
0