結果

問題 No.647 明太子
ユーザー kohei2019kohei2019
提出日時 2022-03-01 00:28:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 227 ms / 4,500 ms
コード長 417 bytes
コンパイル時間 190 ms
コンパイル使用メモリ 82,292 KB
実行使用メモリ 77,056 KB
最終ジャッジ日時 2024-07-07 03:34:51
合計ジャッジ時間 3,134 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,252 KB
testcase_01 AC 39 ms
52,644 KB
testcase_02 AC 40 ms
52,444 KB
testcase_03 AC 40 ms
52,456 KB
testcase_04 AC 39 ms
52,340 KB
testcase_05 AC 39 ms
52,972 KB
testcase_06 AC 38 ms
52,900 KB
testcase_07 AC 46 ms
59,700 KB
testcase_08 AC 45 ms
59,764 KB
testcase_09 AC 61 ms
65,548 KB
testcase_10 AC 65 ms
67,588 KB
testcase_11 AC 60 ms
63,076 KB
testcase_12 AC 64 ms
65,600 KB
testcase_13 AC 85 ms
72,892 KB
testcase_14 AC 179 ms
76,764 KB
testcase_15 AC 91 ms
73,856 KB
testcase_16 AC 64 ms
64,896 KB
testcase_17 AC 212 ms
77,056 KB
testcase_18 AC 227 ms
76,712 KB
testcase_19 AC 102 ms
76,640 KB
testcase_20 AC 103 ms
76,672 KB
testcase_21 AC 80 ms
73,088 KB
testcase_22 AC 151 ms
76,928 KB
testcase_23 AC 52 ms
61,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
lsAB = [tuple(map(int,input().split())) for i in range(N)]
M = int(input())
lsXY = [tuple(map(int,input().split())) for i in range(M)]
cnt = [0]*(M)
for i in range(N):
    a,b = lsAB[i]
    for j in range(M):
        x,y = lsXY[j]
        if x <= a and y >= b:
            cnt[j] += 1
maxj = max(cnt)
if maxj == 0:
    print(0)
    exit()

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