結果

問題 No.647 明太子
ユーザー gorugo30gorugo30
提出日時 2021-02-24 11:31:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 226 ms / 4,500 ms
コード長 418 bytes
コンパイル時間 300 ms
コンパイル使用メモリ 82,700 KB
実行使用メモリ 77,612 KB
最終ジャッジ日時 2024-09-24 11:54:58
合計ジャッジ時間 3,523 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,592 KB
testcase_01 AC 36 ms
52,684 KB
testcase_02 AC 36 ms
52,464 KB
testcase_03 AC 37 ms
52,832 KB
testcase_04 AC 37 ms
52,488 KB
testcase_05 AC 38 ms
53,012 KB
testcase_06 AC 37 ms
52,544 KB
testcase_07 AC 45 ms
61,180 KB
testcase_08 AC 44 ms
59,044 KB
testcase_09 AC 61 ms
65,724 KB
testcase_10 AC 66 ms
67,668 KB
testcase_11 AC 51 ms
62,408 KB
testcase_12 AC 64 ms
67,500 KB
testcase_13 AC 76 ms
70,308 KB
testcase_14 AC 178 ms
76,956 KB
testcase_15 AC 92 ms
74,512 KB
testcase_16 AC 61 ms
66,744 KB
testcase_17 AC 217 ms
77,092 KB
testcase_18 AC 226 ms
77,336 KB
testcase_19 AC 97 ms
77,284 KB
testcase_20 AC 101 ms
77,320 KB
testcase_21 AC 80 ms
74,620 KB
testcase_22 AC 149 ms
77,612 KB
testcase_23 AC 49 ms
62,204 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
AB = [list(map(int, input().split())) for i in range(N)]
M = int(input())
XY = [list(map(int, input().split())) for i in range(M)]
cnt = [0] * M
for i in range(N):
    A, B = AB[i]
    for j in range(M):
        X, Y = XY[j]
        if X <= A and B <= Y:
            cnt[j] += 1
maxcnt = max(cnt)
if maxcnt == 0:
    print(0)
    exit()
for i in range(M):
    if cnt[i] == maxcnt:
        print(i + 1)
0