結果

問題 No.647 明太子
ユーザー syunsukesyunsuke
提出日時 2018-10-07 20:40:31
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 414 bytes
コンパイル時間 151 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 11,648 KB
最終ジャッジ日時 2024-04-20 18:18:16
合計ジャッジ時間 10,131 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 RE -
testcase_02 AC 26 ms
10,752 KB
testcase_03 AC 27 ms
10,624 KB
testcase_04 RE -
testcase_05 RE -
testcase_06 AC 26 ms
10,752 KB
testcase_07 AC 28 ms
10,752 KB
testcase_08 WA -
testcase_09 RE -
testcase_10 RE -
testcase_11 AC 37 ms
10,752 KB
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 AC 376 ms
11,520 KB
testcase_20 AC 439 ms
11,392 KB
testcase_21 AC 176 ms
11,136 KB
testcase_22 RE -
testcase_23 WA -
権限があれば一括ダウンロードができます

ソースコード

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(N+1):
        if ans[l]==max(ans):
            print(l)
0