結果

問題 No.647 明太子
ユーザー pete1288998pete1288998
提出日時 2020-06-27 19:04:22
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 3,394 ms / 4,500 ms
コード長 475 bytes
コンパイル時間 108 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 12,288 KB
最終ジャッジ日時 2024-07-05 19:30:29
合計ジャッジ時間 11,372 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,624 KB
testcase_01 AC 28 ms
10,752 KB
testcase_02 AC 27 ms
10,624 KB
testcase_03 AC 28 ms
10,496 KB
testcase_04 AC 28 ms
10,624 KB
testcase_05 AC 31 ms
10,496 KB
testcase_06 AC 31 ms
10,752 KB
testcase_07 AC 28 ms
10,496 KB
testcase_08 AC 29 ms
10,624 KB
testcase_09 AC 58 ms
10,880 KB
testcase_10 AC 86 ms
10,880 KB
testcase_11 AC 45 ms
10,752 KB
testcase_12 AC 76 ms
10,752 KB
testcase_13 AC 149 ms
10,752 KB
testcase_14 AC 1,305 ms
12,160 KB
testcase_15 AC 203 ms
10,880 KB
testcase_16 AC 72 ms
10,752 KB
testcase_17 AC 1,433 ms
12,160 KB
testcase_18 AC 1,679 ms
12,160 KB
testcase_19 AC 509 ms
11,776 KB
testcase_20 AC 529 ms
11,520 KB
testcase_21 AC 209 ms
11,264 KB
testcase_22 AC 3,394 ms
12,288 KB
testcase_23 AC 35 ms
10,624 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