結果

問題 No.647 明太子
ユーザー wajima_wataruwajima_wataru
提出日時 2018-03-03 19:33:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 222 ms / 4,500 ms
コード長 473 bytes
コンパイル時間 349 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 77,224 KB
最終ジャッジ日時 2024-06-27 02:48:30
合計ジャッジ時間 2,893 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,480 KB
testcase_01 AC 40 ms
51,840 KB
testcase_02 AC 39 ms
52,096 KB
testcase_03 AC 39 ms
51,840 KB
testcase_04 AC 39 ms
51,712 KB
testcase_05 AC 39 ms
51,840 KB
testcase_06 AC 38 ms
52,224 KB
testcase_07 AC 48 ms
60,160 KB
testcase_08 AC 48 ms
59,264 KB
testcase_09 AC 64 ms
64,512 KB
testcase_10 AC 70 ms
65,536 KB
testcase_11 AC 54 ms
62,080 KB
testcase_12 AC 62 ms
65,792 KB
testcase_13 AC 92 ms
72,576 KB
testcase_14 AC 161 ms
76,544 KB
testcase_15 AC 89 ms
73,600 KB
testcase_16 AC 63 ms
64,640 KB
testcase_17 AC 206 ms
77,224 KB
testcase_18 AC 222 ms
76,544 KB
testcase_19 AC 87 ms
76,096 KB
testcase_20 AC 90 ms
76,288 KB
testcase_21 AC 75 ms
71,808 KB
testcase_22 AC 142 ms
76,628 KB
testcase_23 AC 50 ms
61,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = []
B = []
for _ in range(N):
    a, b = map(int, input().split())
    A.append(a)
    B.append(b)

M = int(input())
X = []
Y = []
for _ in range(M):
    x, y = map(int, input().split())
    X.append(x)
    Y.append(y)

ans = [0] * M
for i in range(N):
    for j in range(M):
        if A[i] >= X[j] and B[i] <= Y[j]:
            ans[j] += 1

max_n = max(ans)
if max_n > 0:
    [print(i + 1) for i, n in enumerate(ans) if n == max_n]
else:
    print(0)
0