結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,840 KB
testcase_01 AC 39 ms
52,352 KB
testcase_02 AC 38 ms
51,840 KB
testcase_03 AC 39 ms
52,352 KB
testcase_04 AC 38 ms
52,736 KB
testcase_05 AC 39 ms
51,968 KB
testcase_06 AC 37 ms
52,224 KB
testcase_07 AC 46 ms
59,648 KB
testcase_08 AC 44 ms
60,032 KB
testcase_09 AC 59 ms
65,536 KB
testcase_10 AC 69 ms
67,328 KB
testcase_11 AC 54 ms
63,744 KB
testcase_12 AC 67 ms
67,584 KB
testcase_13 AC 80 ms
71,040 KB
testcase_14 AC 188 ms
77,184 KB
testcase_15 AC 100 ms
76,928 KB
testcase_16 AC 64 ms
66,304 KB
testcase_17 AC 224 ms
77,088 KB
testcase_18 AC 224 ms
77,440 KB
testcase_19 AC 100 ms
77,160 KB
testcase_20 AC 96 ms
77,044 KB
testcase_21 AC 83 ms
74,624 KB
testcase_22 AC 179 ms
77,128 KB
testcase_23 AC 52 ms
62,080 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
members = [list(map(int, input().split())) for _ in range(n)]
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

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