結果

問題 No.647 明太子
ユーザー LaikaLaika
提出日時 2018-02-15 16:45:41
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
MLE  
実行時間 -
コード長 547 bytes
コンパイル時間 204 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 324,388 KB
最終ジャッジ日時 2024-06-07 22:05:10
合計ジャッジ時間 11,850 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
10,624 KB
testcase_01 AC 26 ms
10,752 KB
testcase_02 AC 26 ms
10,624 KB
testcase_03 AC 25 ms
10,624 KB
testcase_04 AC 24 ms
10,624 KB
testcase_05 AC 24 ms
10,624 KB
testcase_06 AC 23 ms
10,624 KB
testcase_07 AC 27 ms
10,496 KB
testcase_08 AC 25 ms
10,752 KB
testcase_09 AC 53 ms
11,136 KB
testcase_10 AC 76 ms
12,160 KB
testcase_11 AC 37 ms
11,008 KB
testcase_12 AC 63 ms
11,136 KB
testcase_13 AC 129 ms
12,928 KB
testcase_14 AC 1,233 ms
43,392 KB
testcase_15 AC 173 ms
14,720 KB
testcase_16 AC 61 ms
11,648 KB
testcase_17 AC 1,488 ms
54,656 KB
testcase_18 AC 1,547 ms
58,368 KB
testcase_19 AC 375 ms
12,160 KB
testcase_20 AC 503 ms
12,160 KB
testcase_21 AC 210 ms
11,392 KB
testcase_22 MLE -
testcase_23 AC 27 ms
10,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter

n = int(input())
mem = []
mcl = []
for i in range(n):
    array = list(map(int, input().split()))
    mem.append(array)

m = int(input())
men = []

for i in range(m):
    array = list(map(int, input().split()))
    men.append(array)


for i in range(n):
    for j in range(m):
        if mem[i][0] >= men[j][0] and mem[i][1] <= men[j][1]:
            mcl.append(j)

c = Counter(mcl)
g = c.most_common()

if len(g) == 0:
    print(0)

for i in range(len(g)):
    if g[i][1] == g[0][1]:
        print(g[i][0] + 1)


0