結果

問題 No.647 明太子
ユーザー rykawrykaw
提出日時 2018-02-20 13:49:34
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 725 bytes
コンパイル時間 184 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 12,544 KB
最終ジャッジ日時 2024-12-26 08:11:39
合計ジャッジ時間 12,891 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
10,624 KB
testcase_01 AC 39 ms
10,624 KB
testcase_02 AC 37 ms
10,624 KB
testcase_03 AC 35 ms
10,368 KB
testcase_04 AC 38 ms
10,624 KB
testcase_05 AC 39 ms
10,624 KB
testcase_06 AC 35 ms
10,624 KB
testcase_07 AC 40 ms
10,624 KB
testcase_08 AC 42 ms
10,624 KB
testcase_09 AC 65 ms
10,752 KB
testcase_10 AC 94 ms
10,624 KB
testcase_11 AC 50 ms
10,624 KB
testcase_12 AC 80 ms
10,624 KB
testcase_13 AC 137 ms
10,752 KB
testcase_14 AC 1,240 ms
12,160 KB
testcase_15 AC 184 ms
10,752 KB
testcase_16 AC 73 ms
10,752 KB
testcase_17 AC 1,441 ms
12,288 KB
testcase_18 AC 1,510 ms
12,160 KB
testcase_19 AC 388 ms
12,160 KB
testcase_20 AC 399 ms
11,904 KB
testcase_21 AC 159 ms
11,136 KB
testcase_22 TLE -
testcase_23 AC 40 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input()) # members
members = [list(map(int, input().rstrip().split(' '))) for i in range(0, N)]

M = int(input()) # mentaiko

counts = [0 for _ in range(0, M)]
miracle_idx = []
max_val = -1

for idx in range(0, M):
    m = list(map(int, input().rstrip().split(' ')))

    for member in members:
        if member[0] >= m[0] and member[1] <= m[1]:
            counts[idx] += 1

            if max_val < counts[idx]:
                max_val = counts[idx]
                del miracle_idx[:]
                miracle_idx.append(idx)

            elif max_val == counts[idx]:
                miracle_idx.append(idx)

if len(miracle_idx) == 0:
    print("0")
else:
    for m in miracle_idx:
        print("{}".format(m + 1))
0