結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,624 KB
testcase_01 AC 27 ms
10,752 KB
testcase_02 AC 27 ms
10,880 KB
testcase_03 AC 27 ms
10,752 KB
testcase_04 AC 27 ms
10,752 KB
testcase_05 AC 28 ms
10,752 KB
testcase_06 AC 28 ms
10,880 KB
testcase_07 AC 26 ms
10,752 KB
testcase_08 AC 28 ms
10,752 KB
testcase_09 AC 49 ms
10,752 KB
testcase_10 AC 72 ms
10,880 KB
testcase_11 AC 37 ms
10,752 KB
testcase_12 AC 61 ms
10,752 KB
testcase_13 AC 111 ms
10,752 KB
testcase_14 AC 924 ms
11,392 KB
testcase_15 AC 146 ms
10,880 KB
testcase_16 AC 60 ms
10,752 KB
testcase_17 AC 1,180 ms
11,520 KB
testcase_18 AC 1,226 ms
11,520 KB
testcase_19 AC 370 ms
11,520 KB
testcase_20 AC 402 ms
11,392 KB
testcase_21 AC 157 ms
11,136 KB
testcase_22 AC 3,046 ms
11,648 KB
testcase_23 AC 32 ms
10,752 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