結果

問題 No.647 明太子
ユーザー brthyyjpbrthyyjp
提出日時 2020-06-17 03:31:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 160 ms / 4,500 ms
コード長 500 bytes
コンパイル時間 143 ms
コンパイル使用メモリ 82,584 KB
実行使用メモリ 68,784 KB
最終ジャッジ日時 2024-07-03 12:04:35
合計ジャッジ時間 2,418 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,328 KB
testcase_01 AC 39 ms
52,888 KB
testcase_02 AC 36 ms
53,288 KB
testcase_03 AC 37 ms
53,376 KB
testcase_04 AC 36 ms
52,408 KB
testcase_05 AC 35 ms
53,152 KB
testcase_06 AC 35 ms
53,192 KB
testcase_07 AC 40 ms
60,832 KB
testcase_08 AC 40 ms
59,992 KB
testcase_09 AC 46 ms
62,044 KB
testcase_10 AC 48 ms
62,260 KB
testcase_11 AC 46 ms
62,952 KB
testcase_12 AC 47 ms
62,360 KB
testcase_13 AC 57 ms
65,024 KB
testcase_14 AC 130 ms
66,768 KB
testcase_15 AC 61 ms
65,420 KB
testcase_16 AC 49 ms
63,244 KB
testcase_17 AC 158 ms
68,272 KB
testcase_18 AC 160 ms
68,012 KB
testcase_19 AC 63 ms
65,164 KB
testcase_20 AC 60 ms
65,284 KB
testcase_21 AC 50 ms
64,188 KB
testcase_22 AC 108 ms
68,784 KB
testcase_23 AC 43 ms
62,892 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.buffer.readline

n = int(input())
AB = [0]*n
for i in range(n):
    a, b = map(int, input().split())
    AB[i] = (a, b)
m = int(input())
V = [0]*m
for i in range(m):
    x, y = map(int, input().split())
    temp = 0
    for j in range(n):
        a, b = AB[j]
        if x <= a and y >= b:
            temp += 1
    V[i] = temp
v = max(V)
if v == 0:
    print(0)
    exit()
ans = []
for i in range(m):
    if V[i] == v:
        ans.append(i+1)
for i in ans:
    print(i)
0