結果

問題 No.647 明太子
ユーザー syunsukesyunsuke
提出日時 2018-10-07 20:45:34
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 3,384 ms / 4,500 ms
コード長 415 bytes
コンパイル時間 247 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 11,648 KB
最終ジャッジ日時 2024-10-12 14:17:55
合計ジャッジ時間 9,931 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,752 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 30 ms
10,880 KB
testcase_03 AC 30 ms
10,752 KB
testcase_04 AC 30 ms
10,624 KB
testcase_05 AC 29 ms
10,752 KB
testcase_06 AC 29 ms
10,624 KB
testcase_07 AC 30 ms
10,752 KB
testcase_08 AC 30 ms
10,624 KB
testcase_09 AC 54 ms
10,624 KB
testcase_10 AC 87 ms
10,624 KB
testcase_11 AC 42 ms
10,752 KB
testcase_12 AC 70 ms
10,752 KB
testcase_13 AC 117 ms
10,752 KB
testcase_14 AC 969 ms
11,392 KB
testcase_15 AC 168 ms
10,880 KB
testcase_16 AC 63 ms
10,880 KB
testcase_17 AC 1,215 ms
11,392 KB
testcase_18 AC 1,309 ms
11,392 KB
testcase_19 AC 425 ms
11,392 KB
testcase_20 AC 415 ms
11,264 KB
testcase_21 AC 168 ms
10,880 KB
testcase_22 AC 3,384 ms
11,648 KB
testcase_23 AC 35 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
A=[]
B=[]
for i in range(N):
    a,b=map(int,input().split())
    A.append(a)
    B.append(b)
M=int(input())
ans=[0 for i in range(M+1)]
for j in range(M):
    X,Y=map(int,input().split())
    for k in range(N):
        if X<=A[k] and Y>=B[k]:
            ans[j+1]+=1
m=ans.count(max(ans))
if max(ans)==0:
    print(0)
else:
    for l in range(M+1):
        if ans[l]==max(ans) :
            print(l)
0