結果

問題 No.647 明太子
ユーザー HimatsubushinHimatsubushin
提出日時 2022-02-01 15:11:09
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 563 bytes
コンパイル時間 124 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 22,912 KB
最終ジャッジ日時 2024-06-11 09:10:31
合計ジャッジ時間 15,717 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
22,912 KB
testcase_01 AC 27 ms
10,624 KB
testcase_02 AC 26 ms
10,624 KB
testcase_03 AC 25 ms
10,880 KB
testcase_04 AC 25 ms
10,624 KB
testcase_05 AC 27 ms
10,752 KB
testcase_06 AC 24 ms
10,752 KB
testcase_07 AC 25 ms
10,880 KB
testcase_08 AC 26 ms
10,752 KB
testcase_09 AC 60 ms
10,880 KB
testcase_10 AC 101 ms
10,752 KB
testcase_11 AC 40 ms
10,624 KB
testcase_12 AC 83 ms
10,880 KB
testcase_13 AC 165 ms
10,880 KB
testcase_14 AC 1,677 ms
12,160 KB
testcase_15 AC 243 ms
11,136 KB
testcase_16 AC 76 ms
10,880 KB
testcase_17 AC 2,037 ms
12,288 KB
testcase_18 AC 2,295 ms
12,032 KB
testcase_19 AC 634 ms
12,032 KB
testcase_20 AC 640 ms
11,776 KB
testcase_21 AC 244 ms
11,264 KB
testcase_22 TLE -
testcase_23 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

member = []
for _ in range(int(input())):
    a, b = map(int, input().split())
    member.append([a, b])
item = []
for _ in range(int(input())):
    a, b = map(int, input().split())
    item.append([a, b, 0])
max = 0
for [a, b] in member:
    for i in range(len(item)):
        x, y, z = item[i]
        if a >= x and b <= y:
            item[i] = [x, y, z + 1]
            if max < z + 1:
                max = z + 1
count = 0
if max == 0:
    print(0)
else:
    for i in range(len(item)):
        x, y, z = item[i]
        if z == max:
            print(i + 1)
0