結果

問題 No.647 明太子
ユーザー osrgy01osrgy01
提出日時 2021-04-13 13:31:03
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 3,372 ms / 4,500 ms
コード長 443 bytes
コンパイル時間 79 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 13,440 KB
最終ジャッジ日時 2024-06-29 14:06:16
合計ジャッジ時間 10,558 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,752 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 29 ms
10,752 KB
testcase_03 AC 30 ms
10,752 KB
testcase_04 AC 29 ms
10,752 KB
testcase_05 AC 29 ms
10,624 KB
testcase_06 AC 30 ms
10,752 KB
testcase_07 AC 30 ms
10,752 KB
testcase_08 AC 30 ms
10,752 KB
testcase_09 AC 51 ms
10,752 KB
testcase_10 AC 81 ms
10,880 KB
testcase_11 AC 42 ms
10,880 KB
testcase_12 AC 70 ms
10,880 KB
testcase_13 AC 124 ms
11,008 KB
testcase_14 AC 1,052 ms
12,928 KB
testcase_15 AC 173 ms
11,264 KB
testcase_16 AC 65 ms
10,880 KB
testcase_17 AC 1,344 ms
13,056 KB
testcase_18 AC 1,481 ms
13,056 KB
testcase_19 AC 414 ms
12,928 KB
testcase_20 AC 454 ms
12,544 KB
testcase_21 AC 178 ms
11,648 KB
testcase_22 AC 3,372 ms
13,440 KB
testcase_23 AC 32 ms
10,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

a,b=zip(*[[*map(int,input().split())] for _ in range(int(input()))])
x,y=zip(*[[*map(int,input().split())] for _ in range(int(input()))])
cnt=[0]*len(x)
for i in range(len(a)):
    for j in range(len(x)):
        if a[i]>=x[j] and b[i]<=y[j]:
            cnt[j]+=1
max_num=0
for i in range(len(x)):
    max_num=max(max_num,cnt[i])
if max_num==0:
    print(0)
else:
    for i in range(len(x)):
        if cnt[i]==max_num:
            print(i+1)
0