結果

問題 No.647 明太子
ユーザー ああいいああいい
提出日時 2022-05-19 09:25:08
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 396 bytes
コンパイル時間 141 ms
コンパイル使用メモリ 82,100 KB
実行使用メモリ 77,024 KB
最終ジャッジ日時 2024-09-17 14:54:03
合計ジャッジ時間 2,516 ms
ジャッジサーバーID
(参考情報)
judge6 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,224 KB
testcase_01 AC 38 ms
51,968 KB
testcase_02 WA -
testcase_03 AC 31 ms
51,968 KB
testcase_04 AC 32 ms
52,224 KB
testcase_05 AC 31 ms
52,128 KB
testcase_06 AC 30 ms
51,712 KB
testcase_07 AC 36 ms
59,520 KB
testcase_08 AC 37 ms
59,392 KB
testcase_09 AC 46 ms
62,464 KB
testcase_10 AC 53 ms
66,816 KB
testcase_11 AC 46 ms
64,128 KB
testcase_12 AC 58 ms
66,944 KB
testcase_13 AC 69 ms
73,728 KB
testcase_14 AC 120 ms
76,544 KB
testcase_15 AC 72 ms
73,856 KB
testcase_16 AC 49 ms
65,408 KB
testcase_17 AC 131 ms
76,640 KB
testcase_18 AC 136 ms
76,748 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 105 ms
76,800 KB
testcase_23 AC 48 ms
63,872 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
member = []
for _ in range(N):
    a,b = map(int,input().split())
    member.append((a,b))
M = int(input())
dat = [0] * M
m = -1
for _ in range(M):
    x,y = map(int,input().split())
    count = 0
    for a,b in member:
        if x <= a and y >= b:
            count += 1
    dat[_] = count
    if count > m:m = count
for i in range(M):
    if dat[i] == m:
        print(i + 1)
0