結果

問題 No.647 明太子
ユーザー caleicalei
提出日時 2020-01-25 19:25:32
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 424 bytes
コンパイル時間 177 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 16,128 KB
最終ジャッジ日時 2024-09-14 04:12:57
合計ジャッジ時間 13,659 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
16,128 KB
testcase_01 AC 29 ms
10,752 KB
testcase_02 AC 32 ms
10,624 KB
testcase_03 AC 30 ms
10,624 KB
testcase_04 AC 30 ms
10,624 KB
testcase_05 AC 30 ms
10,624 KB
testcase_06 AC 31 ms
10,624 KB
testcase_07 AC 30 ms
10,624 KB
testcase_08 AC 31 ms
10,624 KB
testcase_09 AC 61 ms
10,752 KB
testcase_10 AC 93 ms
10,752 KB
testcase_11 AC 45 ms
10,624 KB
testcase_12 AC 82 ms
10,880 KB
testcase_13 AC 148 ms
10,880 KB
testcase_14 AC 1,345 ms
11,776 KB
testcase_15 AC 207 ms
10,880 KB
testcase_16 AC 76 ms
10,880 KB
testcase_17 AC 1,677 ms
11,904 KB
testcase_18 AC 1,802 ms
11,904 KB
testcase_19 AC 394 ms
11,776 KB
testcase_20 AC 409 ms
11,520 KB
testcase_21 AC 168 ms
11,008 KB
testcase_22 TLE -
testcase_23 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

# yukicoder No.647 明太子 2020/01/25

n=int(input())
ab=[tuple(map(int,input().split())) for _ in range(n)]
m=int(input())
xy=[tuple(map(int,input().split())) for _ in range(m)]

ans=[0]*m
MAX=0
for i in range(m):
    x,y=xy[i]
    for a,b in ab:
        if x<=a and b<=y:
            ans[i]+=1
            MAX=max(MAX,ans[i])
if MAX==0:
    print(0)
    exit()

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