結果

問題 No.647 明太子
ユーザー kept1994kept1994
提出日時 2022-05-04 23:23:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 182 ms / 4,500 ms
コード長 574 bytes
コンパイル時間 188 ms
コンパイル使用メモリ 82,360 KB
実行使用メモリ 76,976 KB
最終ジャッジ日時 2024-07-04 02:02:48
合計ジャッジ時間 2,768 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,352 KB
testcase_01 AC 39 ms
52,624 KB
testcase_02 AC 38 ms
53,156 KB
testcase_03 AC 36 ms
52,008 KB
testcase_04 AC 37 ms
53,092 KB
testcase_05 AC 36 ms
53,032 KB
testcase_06 AC 36 ms
52,064 KB
testcase_07 AC 43 ms
59,212 KB
testcase_08 AC 44 ms
60,808 KB
testcase_09 AC 56 ms
64,764 KB
testcase_10 AC 73 ms
75,924 KB
testcase_11 AC 55 ms
65,324 KB
testcase_12 AC 66 ms
69,304 KB
testcase_13 AC 81 ms
73,624 KB
testcase_14 AC 142 ms
76,328 KB
testcase_15 AC 86 ms
74,188 KB
testcase_16 AC 61 ms
67,592 KB
testcase_17 AC 168 ms
76,532 KB
testcase_18 AC 182 ms
76,976 KB
testcase_19 AC 92 ms
76,688 KB
testcase_20 AC 93 ms
76,392 KB
testcase_21 AC 76 ms
75,016 KB
testcase_22 AC 121 ms
76,808 KB
testcase_23 AC 56 ms
64,812 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
import sys

def main():
    N = int(input())
    ab = []
    for _ in range(N):
        a, b = map(int, input().split())
        ab.append((a, b))
    M = int(input())
    l = [0] * M
    for i in range(M):
        x, y = map(int, input().split())
        for _, q in enumerate(ab):
            a, b = q
            if x <= a and y >= b:
                l[i] += 1
    m = max(l)
    if m == 0:
        print(0)
        return
    for i, ll in enumerate(l):
        if ll == m:
            print(i + 1)
    return

if __name__ == '__main__':
    main()
0