結果

問題 No.647 明太子
ユーザー kichirb3kichirb3
提出日時 2018-03-02 08:56:50
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,474 ms / 4,500 ms
コード長 841 bytes
コンパイル時間 216 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 12,288 KB
最終ジャッジ日時 2024-06-27 02:47:35
合計ジャッジ時間 5,723 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 29 ms
10,624 KB
testcase_02 AC 29 ms
10,752 KB
testcase_03 AC 29 ms
10,624 KB
testcase_04 AC 29 ms
10,624 KB
testcase_05 AC 30 ms
10,752 KB
testcase_06 AC 29 ms
10,752 KB
testcase_07 AC 30 ms
10,752 KB
testcase_08 AC 30 ms
10,624 KB
testcase_09 AC 40 ms
10,880 KB
testcase_10 AC 53 ms
10,752 KB
testcase_11 AC 34 ms
10,624 KB
testcase_12 AC 46 ms
10,752 KB
testcase_13 AC 71 ms
11,008 KB
testcase_14 AC 505 ms
12,032 KB
testcase_15 AC 97 ms
10,880 KB
testcase_16 AC 46 ms
10,752 KB
testcase_17 AC 646 ms
12,288 KB
testcase_18 AC 707 ms
12,032 KB
testcase_19 AC 214 ms
12,032 KB
testcase_20 AC 235 ms
11,648 KB
testcase_21 AC 101 ms
11,264 KB
testcase_22 AC 1,474 ms
12,288 KB
testcase_23 AC 30 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# -*- coding: utf-8 -*-
"""
No.647 明太子
https://yukicoder.me/problems/no/647

"""
import sys
from sys import stdin

input = stdin.readline


def main(args):
    N = int(input())
    criteria = []
    for _ in range(N):
        A, B = map(int, input().split())
        criteria.append([A, B])

    M = int(input())
    mentaiko = []
    for _ in range( M):
        X, Y = map(int, input().split())
        mentaiko.append([X, Y])

    votes = [0] * M
    for A, B in criteria:
        for i, m in zip(range(M), mentaiko):
            X, Y = m[0], m[1]
            if (X <= A and Y >= B):
                votes[i] += 1

    max_vote = max(votes)
    if max_vote == 0:
        print(0)
    else:
        for i in range(M):
            if votes[i] == max_vote:
                print(i+1)


if __name__ == '__main__':
    main(sys.argv[1:])
0