結果

問題 No.647 明太子
ユーザー 141sksk141sksk
提出日時 2019-09-17 21:13:49
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,211 ms / 4,500 ms
コード長 667 bytes
コンパイル時間 197 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 11,648 KB
最終ジャッジ日時 2024-07-07 13:48:58
合計ジャッジ時間 5,266 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,624 KB
testcase_01 AC 26 ms
10,752 KB
testcase_02 AC 25 ms
10,752 KB
testcase_03 AC 27 ms
10,752 KB
testcase_04 AC 27 ms
10,624 KB
testcase_05 AC 27 ms
10,624 KB
testcase_06 AC 30 ms
10,624 KB
testcase_07 AC 31 ms
10,624 KB
testcase_08 AC 26 ms
10,752 KB
testcase_09 AC 34 ms
10,752 KB
testcase_10 AC 43 ms
10,880 KB
testcase_11 AC 29 ms
10,752 KB
testcase_12 AC 39 ms
10,752 KB
testcase_13 AC 61 ms
10,880 KB
testcase_14 AC 398 ms
11,648 KB
testcase_15 AC 76 ms
10,880 KB
testcase_16 AC 38 ms
10,752 KB
testcase_17 AC 493 ms
11,520 KB
testcase_18 AC 536 ms
11,520 KB
testcase_19 AC 138 ms
11,520 KB
testcase_20 AC 157 ms
11,264 KB
testcase_21 AC 69 ms
10,880 KB
testcase_22 AC 1,211 ms
11,648 KB
testcase_23 AC 28 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():

    n = int(input())
    A = []
    B = []
    for _ in range(n):
        a, b = list(map(int, input().split()))
        A.append(a)
        B.append(b)
    m = int(input())
    X = []
    Y = []
    M = [0] * m
    for _ in range(m):
        x, y = list(map(int, input().split()))
        X.append(x)
        Y.append(y)
    for i in range(n):
        for j in range(m):
            if X[j] <= A[i] and Y[j] >= B[i]:
                M[j] += 1
    mx = max(M)
    
    if max(M) == 0:
        print("0")
    else:
        for x in range(m):
            if M[x] == mx:
                print(x + 1)
        
        


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