結果

問題 No.647 明太子
ユーザー tossytossy
提出日時 2018-02-09 22:53:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 216 ms / 4,500 ms
コード長 423 bytes
コンパイル時間 143 ms
コンパイル使用メモリ 82,000 KB
実行使用メモリ 77,560 KB
最終ジャッジ日時 2024-06-27 02:34:24
合計ジャッジ時間 2,931 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,356 KB
testcase_01 AC 37 ms
52,696 KB
testcase_02 AC 38 ms
52,004 KB
testcase_03 AC 37 ms
52,140 KB
testcase_04 AC 37 ms
53,496 KB
testcase_05 AC 38 ms
52,680 KB
testcase_06 AC 40 ms
52,388 KB
testcase_07 AC 44 ms
60,672 KB
testcase_08 AC 44 ms
59,284 KB
testcase_09 AC 57 ms
64,328 KB
testcase_10 AC 65 ms
67,224 KB
testcase_11 AC 54 ms
64,692 KB
testcase_12 AC 69 ms
68,728 KB
testcase_13 AC 77 ms
70,892 KB
testcase_14 AC 179 ms
76,948 KB
testcase_15 AC 95 ms
77,104 KB
testcase_16 AC 61 ms
66,952 KB
testcase_17 AC 216 ms
77,436 KB
testcase_18 AC 214 ms
77,244 KB
testcase_19 AC 107 ms
77,560 KB
testcase_20 AC 99 ms
77,308 KB
testcase_21 AC 90 ms
76,712 KB
testcase_22 AC 172 ms
76,992 KB
testcase_23 AC 52 ms
64,444 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

m = int(input())
cand = []
cbest = 0
for i in range(m):
    p,q = map(int, input().split())
    cur = 0
    for a,b in ab:
        if p <= a and q >= b : cur += 1
    if cbest == cur :
        cand.append(i+1)
    elif cbest < cur :
        cbest = cur
        cand = [i+1]

if cbest == 0 :
    print(0)
else :
    for i in cand :
        print(i)
0