結果

問題 No.647 明太子
ユーザー ああいいああいい
提出日時 2022-05-19 09:27:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 163 ms / 4,500 ms
コード長 442 bytes
コンパイル時間 229 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 76,800 KB
最終ジャッジ日時 2024-09-17 14:56:53
合計ジャッジ時間 2,911 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,840 KB
testcase_01 AC 41 ms
51,584 KB
testcase_02 AC 41 ms
51,712 KB
testcase_03 AC 39 ms
51,968 KB
testcase_04 AC 39 ms
52,224 KB
testcase_05 AC 39 ms
51,456 KB
testcase_06 AC 38 ms
51,456 KB
testcase_07 AC 48 ms
58,752 KB
testcase_08 AC 45 ms
59,008 KB
testcase_09 AC 61 ms
62,592 KB
testcase_10 AC 65 ms
66,816 KB
testcase_11 AC 56 ms
64,512 KB
testcase_12 AC 65 ms
66,944 KB
testcase_13 AC 81 ms
73,472 KB
testcase_14 AC 149 ms
76,800 KB
testcase_15 AC 86 ms
73,728 KB
testcase_16 AC 61 ms
65,792 KB
testcase_17 AC 159 ms
76,488 KB
testcase_18 AC 163 ms
76,480 KB
testcase_19 AC 98 ms
76,288 KB
testcase_20 AC 96 ms
76,544 KB
testcase_21 AC 80 ms
73,088 KB
testcase_22 AC 142 ms
76,672 KB
testcase_23 AC 55 ms
64,128 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
member = []
for _ in range(N):
    a,b = map(int,input().split())
    member.append((a,b))
M = int(input())
dat = [0] * M
m = -1
for _ in range(M):
    x,y = map(int,input().split())
    count = 0
    for a,b in member:
        if x <= a and y >= b:
            count += 1
    dat[_] = count
    if count > m:m = count
import sys
if m == 0:
    print(0)
    exit()
for i in range(M):
    if dat[i] == m:
        print(i + 1)
0