結果

問題 No.647 明太子
ユーザー syunsukesyunsuke
提出日時 2018-09-01 23:51:09
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 752 bytes
コンパイル時間 208 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 12,416 KB
最終ジャッジ日時 2024-09-21 20:54:43
合計ジャッジ時間 11,687 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
10,752 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 30 ms
10,624 KB
testcase_03 AC 34 ms
10,752 KB
testcase_04 AC 30 ms
10,624 KB
testcase_05 AC 29 ms
10,752 KB
testcase_06 AC 30 ms
10,752 KB
testcase_07 AC 30 ms
10,752 KB
testcase_08 WA -
testcase_09 AC 56 ms
10,880 KB
testcase_10 AC 87 ms
10,880 KB
testcase_11 AC 44 ms
10,880 KB
testcase_12 AC 72 ms
10,752 KB
testcase_13 AC 134 ms
11,008 KB
testcase_14 AC 1,288 ms
12,032 KB
testcase_15 AC 197 ms
11,008 KB
testcase_16 AC 72 ms
10,752 KB
testcase_17 AC 1,587 ms
12,160 KB
testcase_18 AC 1,640 ms
12,160 KB
testcase_19 AC 483 ms
12,032 KB
testcase_20 AC 548 ms
11,776 KB
testcase_21 AC 194 ms
11,136 KB
testcase_22 AC 3,748 ms
12,416 KB
testcase_23 AC 33 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
listn=[]
listm=[]
for i in range(N):
    a,b=map(int,input().split())
    listn.append([a,b])
M=int(input())
for j in range(M):
    a,b=map(int,input().split())
    listm.append([a,b])
#print(listn)
#print(listm)

listM=[]
for k in range(M):
    listM.append([0,k])

for l in range(N):
    
    for m in range(M):
        if listn[l][0]>=listm[m][0] and listn[l][1]<=listm[m][1]:
            listM[m][0]+=1
if listM[0][0]==0:
    print(0)
else:
    listM.sort(reverse=True)
    listANS=[listM[0][1]]
    for n in range(1,M):
        if listM[n][0]==listM[0][0]:
            listANS.append(listM[n][1])
        else:
            break
    listANS.sort()
    for o in range(len(listANS)):
        print(listANS[o]+1)
        #print(listM)
0