結果

問題 No.647 明太子
ユーザー syunsukesyunsuke
提出日時 2018-06-22 22:46:09
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 3,876 ms / 4,500 ms
コード長 972 bytes
コンパイル時間 101 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 12,800 KB
最終ジャッジ日時 2024-06-30 18:08:15
合計ジャッジ時間 13,994 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,880 KB
testcase_01 AC 32 ms
10,880 KB
testcase_02 AC 30 ms
10,880 KB
testcase_03 AC 31 ms
10,880 KB
testcase_04 AC 29 ms
10,880 KB
testcase_05 AC 30 ms
10,880 KB
testcase_06 AC 29 ms
10,880 KB
testcase_07 AC 30 ms
10,880 KB
testcase_08 AC 30 ms
11,008 KB
testcase_09 AC 64 ms
10,880 KB
testcase_10 AC 100 ms
11,008 KB
testcase_11 AC 44 ms
11,008 KB
testcase_12 AC 89 ms
11,008 KB
testcase_13 AC 172 ms
11,008 KB
testcase_14 AC 1,601 ms
12,288 KB
testcase_15 AC 254 ms
11,136 KB
testcase_16 AC 81 ms
11,008 KB
testcase_17 AC 1,937 ms
12,416 KB
testcase_18 AC 2,176 ms
12,288 KB
testcase_19 AC 829 ms
12,160 KB
testcase_20 AC 910 ms
12,032 KB
testcase_21 AC 341 ms
11,264 KB
testcase_22 AC 3,876 ms
12,800 KB
testcase_23 AC 32 ms
10,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
listm=[]
for i in range(N):
    line=input()
    line=line.rstrip().split(" ")
    a=[int(line[0]),int(line[1])]
    listm.append(a)
#print(listm)
    
M=int(input())
list1=[0]*M
#print(list1)
listmen=[]
for j in range(M):
    line=input()
    line=line.rstrip().split(" ")
    a=[int(line[0]),int(line[1])]
    listmen.append(a)
#print(listmen)

for k in range(M):
    
    for l in range(N):
        if listm[l][0]>=listmen[k][0] and listm[l][1]<=listmen[k][1]:
            list1[k]=list1[k]+1
        else:
            l+=1
#print(list1)
if sum(list1)==0:
    print(0)
else:
    list2=[]
    for m in range(M):
        a=[list1[m],m+1]
        list2.append(a)
    list2.sort(reverse=True)
    list3=[[list2[0][0],list2[0][1]]]
    for n in range(1,M):
        if list2[0][0]==list2[n][0]:
            list3.append([list2[n][0],list2[n][1]])
        else:
            break
    list3.sort()
    for o in range(len(list3)):
        print(list3[o][1])
    
0