結果

問題 No.647 明太子
ユーザー ohanaohana
提出日時 2023-10-27 09:38:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 257 ms / 4,500 ms
コード長 325 bytes
コンパイル時間 460 ms
コンパイル使用メモリ 82,308 KB
実行使用メモリ 77,496 KB
最終ジャッジ日時 2024-09-25 12:56:42
合計ジャッジ時間 3,621 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,348 KB
testcase_01 AC 39 ms
52,900 KB
testcase_02 AC 39 ms
52,600 KB
testcase_03 AC 39 ms
52,024 KB
testcase_04 AC 38 ms
52,200 KB
testcase_05 AC 42 ms
52,196 KB
testcase_06 AC 39 ms
52,304 KB
testcase_07 AC 46 ms
61,088 KB
testcase_08 AC 47 ms
59,844 KB
testcase_09 AC 62 ms
66,772 KB
testcase_10 AC 71 ms
69,012 KB
testcase_11 AC 59 ms
64,336 KB
testcase_12 AC 69 ms
68,532 KB
testcase_13 AC 97 ms
76,320 KB
testcase_14 AC 214 ms
77,496 KB
testcase_15 AC 103 ms
76,148 KB
testcase_16 AC 67 ms
67,360 KB
testcase_17 AC 257 ms
77,068 KB
testcase_18 AC 245 ms
77,284 KB
testcase_19 AC 99 ms
76,568 KB
testcase_20 AC 96 ms
76,600 KB
testcase_21 AC 86 ms
74,240 KB
testcase_22 AC 192 ms
76,984 KB
testcase_23 AC 53 ms
63,040 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())

A = [tuple(map(int, input().split())) for i in range(n)]
m = int(input())

B = []
for i in range(m):
    a, b = map(int, input().split())
    B.append((sum(map(lambda x: a <= x[0] and x[1] <= b, A)), i + 1))
mx = max(B)[0]
C = [b[1] for b in B if b[0] == mx and b[0] != 0]
print(*C if C else [0], sep="\n")
0