結果

問題 No.647 明太子
ユーザー lloyzlloyz
提出日時 2022-08-01 00:56:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 249 ms / 4,500 ms
コード長 423 bytes
コンパイル時間 289 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 77,696 KB
最終ジャッジ日時 2024-07-21 07:21:50
合計ジャッジ時間 3,624 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,840 KB
testcase_01 AC 40 ms
51,968 KB
testcase_02 AC 39 ms
51,712 KB
testcase_03 AC 40 ms
51,840 KB
testcase_04 AC 40 ms
51,968 KB
testcase_05 AC 41 ms
52,096 KB
testcase_06 AC 41 ms
51,712 KB
testcase_07 AC 56 ms
59,520 KB
testcase_08 AC 50 ms
59,008 KB
testcase_09 AC 70 ms
64,640 KB
testcase_10 AC 76 ms
66,560 KB
testcase_11 AC 60 ms
61,440 KB
testcase_12 AC 76 ms
66,304 KB
testcase_13 AC 89 ms
69,120 KB
testcase_14 AC 196 ms
76,928 KB
testcase_15 AC 107 ms
74,496 KB
testcase_16 AC 71 ms
65,280 KB
testcase_17 AC 232 ms
77,184 KB
testcase_18 AC 249 ms
77,312 KB
testcase_19 AC 114 ms
76,800 KB
testcase_20 AC 116 ms
77,056 KB
testcase_21 AC 95 ms
74,112 KB
testcase_22 AC 168 ms
77,696 KB
testcase_23 AC 56 ms
60,672 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
AB = [list(map(int, input().split())) for _ in range(n)]
m = int(input())
XY = [list(map(int, input().split())) for _ in range(m)]

N = [0 for _ in range(m)]
for i in range(n):
    a, b = AB[i]
    for j in range(m):
        x, y = XY[j]
        if x <= a and y >= b:
            N[j] += 1
max_n = max(N)
if max_n == 0:
    print(0)
    exit()
for i in range(m):
    if N[i] == max_n:
        print(i + 1)
0