結果

問題 No.647 明太子
ユーザー pete1288998pete1288998
提出日時 2020-06-27 19:06:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 247 ms / 4,500 ms
コード長 475 bytes
コンパイル時間 302 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 77,440 KB
最終ジャッジ日時 2024-07-05 19:33:59
合計ジャッジ時間 3,277 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,712 KB
testcase_01 AC 39 ms
51,712 KB
testcase_02 AC 40 ms
51,840 KB
testcase_03 AC 39 ms
51,968 KB
testcase_04 AC 40 ms
51,840 KB
testcase_05 AC 39 ms
51,712 KB
testcase_06 AC 39 ms
51,840 KB
testcase_07 AC 49 ms
59,392 KB
testcase_08 AC 53 ms
60,544 KB
testcase_09 AC 63 ms
64,384 KB
testcase_10 AC 73 ms
66,176 KB
testcase_11 AC 61 ms
64,128 KB
testcase_12 AC 73 ms
66,944 KB
testcase_13 AC 94 ms
73,344 KB
testcase_14 AC 196 ms
77,312 KB
testcase_15 AC 105 ms
74,112 KB
testcase_16 AC 71 ms
66,304 KB
testcase_17 AC 227 ms
77,056 KB
testcase_18 AC 247 ms
77,056 KB
testcase_19 AC 106 ms
76,544 KB
testcase_20 AC 109 ms
76,544 KB
testcase_21 AC 87 ms
71,552 KB
testcase_22 AC 196 ms
77,440 KB
testcase_23 AC 57 ms
63,488 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())

mb = []
for i in range(n):
    a,b = map(int,input().split())
    mb.append([a,b])
    
m = int(input())

c = []
for i in range(m):
    x,y = map(int,input().split())
    c.append([x,y])

l = []
for i in range(m):
    cnt = 0
    for j in range(n):
        if c[i][0] <= mb[j][0] and c[i][1] >= mb[j][1]:
            cnt += 1
    l.append(cnt)

if max(l) == 0:
    print(0)
else:
    for i in range(len(l)):
        if l[i] == max(l):
            print(i+1)
0