結果

問題 No.647 明太子
ユーザー utsumidaisuke
提出日時 2018-12-21 15:26:07
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
TLE  
実行時間 -
コード長 536 bytes
コンパイル時間 130 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 19,868 KB
最終ジャッジ日時 2024-09-25 09:27:31
合計ジャッジ時間 14,854 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 18 TLE * 1 -- * 1
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())

cond = []
for i in range(n):
    inp = list(map(int,input().split()))
    cond.append(inp)
    
m = int(input())
ment = []
for i in range(m):
    inp = list(map(int,input().split()))
    ment.append(inp)

dct = {}
for i in range(m):
    for j in range(n):
        if ment[i][0] <= cond[j][0] and ment[i][1] >= cond[j][1]:
            dct.setdefault(i+1, 0)
            dct[i+1] += 1

if len(dct) == 0:
    print(0)
else:
    res = [i for i,j in dct.items() if j == max(dct.values())]
    for i in res:
        print(i)
0