結果

問題 No.647 明太子
ユーザー MarioMario
提出日時 2018-05-15 18:23:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 192 ms / 4,500 ms
コード長 561 bytes
コンパイル時間 255 ms
コンパイル使用メモリ 82,132 KB
実行使用メモリ 77,508 KB
最終ジャッジ日時 2024-06-28 12:09:12
合計ジャッジ時間 3,054 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,096 KB
testcase_01 AC 39 ms
51,968 KB
testcase_02 AC 40 ms
52,224 KB
testcase_03 AC 39 ms
52,124 KB
testcase_04 AC 40 ms
52,096 KB
testcase_05 AC 41 ms
51,840 KB
testcase_06 AC 39 ms
52,096 KB
testcase_07 AC 46 ms
58,624 KB
testcase_08 AC 44 ms
58,752 KB
testcase_09 AC 61 ms
65,152 KB
testcase_10 AC 69 ms
66,940 KB
testcase_11 AC 56 ms
62,976 KB
testcase_12 AC 67 ms
66,944 KB
testcase_13 AC 80 ms
70,400 KB
testcase_14 AC 157 ms
77,152 KB
testcase_15 AC 94 ms
76,480 KB
testcase_16 AC 66 ms
65,664 KB
testcase_17 AC 188 ms
77,508 KB
testcase_18 AC 185 ms
77,056 KB
testcase_19 AC 91 ms
77,500 KB
testcase_20 AC 89 ms
77,184 KB
testcase_21 AC 80 ms
73,984 KB
testcase_22 AC 192 ms
77,312 KB
testcase_23 AC 54 ms
61,696 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
members = sorted([list(map(int, input().split())) for _ in range(n)], key=lambda x:-x[0])
m = int(input())
mentaiko = [list(map(int, input().split())) for _ in range(m)]
mentaiko_count = [0] * m

for i, (x, y) in enumerate(mentaiko):
    for price, hot in members:
        if x <= price:
            if y >= hot:
                mentaiko_count[i] += 1
        else:
            break

kiseki = [i + 1 for i, x in enumerate(mentaiko_count) if x == max(mentaiko_count) and x != 0]
if kiseki == []:
    print(0)
else:
    print(*kiseki, sep="\n")
0