結果

問題 No.647 明太子
ユーザー kept1994kept1994
提出日時 2022-05-04 23:22:53
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 527 bytes
コンパイル時間 167 ms
コンパイル使用メモリ 82,320 KB
実行使用メモリ 76,800 KB
最終ジャッジ日時 2024-07-04 02:01:45
合計ジャッジ時間 3,088 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,980 KB
testcase_01 AC 37 ms
53,072 KB
testcase_02 WA -
testcase_03 AC 37 ms
52,160 KB
testcase_04 AC 37 ms
53,616 KB
testcase_05 AC 36 ms
53,540 KB
testcase_06 AC 36 ms
52,432 KB
testcase_07 AC 44 ms
59,680 KB
testcase_08 AC 44 ms
59,856 KB
testcase_09 AC 56 ms
63,008 KB
testcase_10 AC 69 ms
75,936 KB
testcase_11 AC 54 ms
66,012 KB
testcase_12 AC 63 ms
68,096 KB
testcase_13 AC 79 ms
73,208 KB
testcase_14 AC 140 ms
76,552 KB
testcase_15 AC 87 ms
74,048 KB
testcase_16 AC 58 ms
67,184 KB
testcase_17 AC 169 ms
76,732 KB
testcase_18 AC 173 ms
76,396 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 117 ms
76,676 KB
testcase_23 AC 51 ms
64,252 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
import sys

def main():
    N = int(input())
    ab = []
    for _ in range(N):
        a, b = map(int, input().split())
        ab.append((a, b))
    M = int(input())
    l = [0] * M
    for i in range(M):
        x, y = map(int, input().split())
        for _, q in enumerate(ab):
            a, b = q
            if x <= a and y >= b:
                l[i] += 1
    m = max(l)
    for i, ll in enumerate(l):
        if ll == m:
            print(i + 1)
    return

if __name__ == '__main__':
    main()
0