結果

問題 No.647 明太子
ユーザー kyo1kyo1
提出日時 2020-09-27 12:54:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 283 ms / 4,500 ms
コード長 425 bytes
コンパイル時間 178 ms
コンパイル使用メモリ 82,152 KB
実行使用メモリ 77,704 KB
最終ジャッジ日時 2024-06-30 11:58:34
合計ジャッジ時間 3,152 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,820 KB
testcase_01 AC 37 ms
52,096 KB
testcase_02 AC 38 ms
53,336 KB
testcase_03 AC 37 ms
52,720 KB
testcase_04 AC 38 ms
52,888 KB
testcase_05 AC 38 ms
53,128 KB
testcase_06 AC 38 ms
53,216 KB
testcase_07 AC 46 ms
60,440 KB
testcase_08 AC 44 ms
60,592 KB
testcase_09 AC 60 ms
65,892 KB
testcase_10 AC 69 ms
67,908 KB
testcase_11 AC 52 ms
62,648 KB
testcase_12 AC 66 ms
67,984 KB
testcase_13 AC 79 ms
70,712 KB
testcase_14 AC 203 ms
77,704 KB
testcase_15 AC 94 ms
74,964 KB
testcase_16 AC 62 ms
66,320 KB
testcase_17 AC 262 ms
77,388 KB
testcase_18 AC 283 ms
77,628 KB
testcase_19 AC 99 ms
77,572 KB
testcase_20 AC 100 ms
77,212 KB
testcase_21 AC 79 ms
74,500 KB
testcase_22 AC 227 ms
77,444 KB
testcase_23 AC 49 ms
62,108 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
AB = [list(map(int, input().split())) for _ in range(N)]
M = int(input())
XY = [list(map(int, input().split())) for _ in range(M)]

counts = [0 for _ in range(M)]

for i in range(N):
    for j in range(M):
        if AB[i][0] >= XY[j][0] and AB[i][1] <= XY[j][1]:
            counts[j] += 1

x = max(counts)

if x == 0:
    print(0)
    exit()

for i in range(M):
    if x == counts[i]:
        print(i + 1)
0