結果

問題 No.647 明太子
ユーザー titiatitia
提出日時 2024-06-30 04:48:41
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 360 bytes
コンパイル時間 144 ms
コンパイル使用メモリ 82,520 KB
実行使用メモリ 77,260 KB
最終ジャッジ日時 2024-06-30 04:48:46
合計ジャッジ時間 3,095 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,548 KB
testcase_01 AC 39 ms
53,576 KB
testcase_02 WA -
testcase_03 AC 39 ms
52,320 KB
testcase_04 AC 37 ms
52,528 KB
testcase_05 AC 37 ms
52,760 KB
testcase_06 AC 37 ms
52,552 KB
testcase_07 AC 44 ms
59,476 KB
testcase_08 AC 44 ms
60,824 KB
testcase_09 AC 50 ms
63,880 KB
testcase_10 AC 59 ms
63,344 KB
testcase_11 AC 48 ms
61,208 KB
testcase_12 AC 53 ms
63,596 KB
testcase_13 AC 63 ms
67,048 KB
testcase_14 AC 251 ms
74,384 KB
testcase_15 AC 69 ms
66,672 KB
testcase_16 AC 52 ms
63,376 KB
testcase_17 AC 167 ms
76,884 KB
testcase_18 AC 164 ms
77,256 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 123 ms
77,260 KB
testcase_23 AC 45 ms
60,796 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N=int(input())
P=[list(map(int,input().split())) for i in range(N)]

M=int(input())
Q=[list(map(int,input().split())) for i in range(M)]

ANS=[0]*M

for i in range(M):
    x,y=Q[i]

    for z,w in P:
        if x<=z and y>=w:
            ANS[i]+=1

MAX=max(ANS)

for i in range(M):
    if MAX==ANS[i]:
        print(i+1)
0