結果

問題 No.647 明太子
コンテスト
ユーザー utsumidaisuke
提出日時 2018-12-21 15:41:14
言語 Python3
(3.14.3 + numpy 2.4.4 + scipy 1.17.1)
コンパイル:
python3 -mpy_compile _filename_
実行:
python3 _filename_
結果
TLE  
実行時間 -
コード長 578 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 333 ms
コンパイル使用メモリ 20,824 KB
実行使用メモリ 21,760 KB
最終ジャッジ日時 2026-04-12 14:00:52
合計ジャッジ時間 9,377 ms
ジャッジサーバーID
(参考情報)
judge1_1 / judge2_1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 10 TLE * 1 -- * 9
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

n = int(input())
cond = {}
for i in range(n):
    inp = input()
    cond.setdefault(inp,0)
    cond[inp] += 1

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,k in cond.items():
        if ment[i][0] <= list(map(int,j.split()))[0] and ment[i][1] >= list(map(int,j.split()))[1]:
            dct.setdefault(i+1, 0)
            dct[i+1] += k

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