結果

問題 No.647 明太子
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-09-20 17:44:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 231 ms / 4,500 ms
コード長 308 bytes
コンパイル時間 527 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 77,244 KB
最終ジャッジ日時 2024-09-20 17:44:41
合計ジャッジ時間 3,821 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
51,940 KB
testcase_01 AC 43 ms
52,096 KB
testcase_02 AC 45 ms
51,712 KB
testcase_03 AC 44 ms
52,608 KB
testcase_04 AC 44 ms
52,096 KB
testcase_05 AC 44 ms
52,480 KB
testcase_06 AC 43 ms
52,096 KB
testcase_07 AC 53 ms
59,904 KB
testcase_08 AC 54 ms
60,160 KB
testcase_09 AC 68 ms
64,512 KB
testcase_10 AC 76 ms
66,048 KB
testcase_11 AC 64 ms
63,872 KB
testcase_12 AC 74 ms
66,432 KB
testcase_13 AC 96 ms
73,728 KB
testcase_14 AC 201 ms
77,056 KB
testcase_15 AC 104 ms
74,624 KB
testcase_16 AC 73 ms
65,408 KB
testcase_17 AC 230 ms
77,244 KB
testcase_18 AC 231 ms
77,124 KB
testcase_19 AC 115 ms
76,996 KB
testcase_20 AC 113 ms
77,004 KB
testcase_21 AC 94 ms
73,856 KB
testcase_22 AC 169 ms
77,184 KB
testcase_23 AC 51 ms
63,232 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
p=[tuple(map(int,input().split())) for i in range(n)]
m=int(input())
q=[tuple(map(int,input().split())) for i in range(m)]
c=[0]*m
for i in range(m):
	x,y=q[i]
	for j in range(n):
		a,b=p[j]
		c[i]+=x<=a and y>=b
C=max(c)
if C==0:
	print(0)
	exit()
for i in range(m):
	if c[i]==C:
		print(i+1)
0