結果

問題 No.647 明太子
ユーザー first_vilfirst_vil
提出日時 2021-11-15 19:02:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 174 ms / 4,500 ms
コード長 376 bytes
コンパイル時間 1,032 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 76,976 KB
最終ジャッジ日時 2024-12-15 01:33:54
合計ジャッジ時間 3,886 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,224 KB
testcase_01 AC 39 ms
51,956 KB
testcase_02 AC 39 ms
52,224 KB
testcase_03 AC 39 ms
51,968 KB
testcase_04 AC 38 ms
52,096 KB
testcase_05 AC 40 ms
52,200 KB
testcase_06 AC 40 ms
51,968 KB
testcase_07 AC 48 ms
59,392 KB
testcase_08 AC 46 ms
59,568 KB
testcase_09 AC 57 ms
62,976 KB
testcase_10 AC 63 ms
65,664 KB
testcase_11 AC 58 ms
64,896 KB
testcase_12 AC 66 ms
67,632 KB
testcase_13 AC 82 ms
73,600 KB
testcase_14 AC 154 ms
76,544 KB
testcase_15 AC 88 ms
74,240 KB
testcase_16 AC 61 ms
65,792 KB
testcase_17 AC 174 ms
76,976 KB
testcase_18 AC 156 ms
76,676 KB
testcase_19 AC 92 ms
76,480 KB
testcase_20 AC 93 ms
76,416 KB
testcase_21 AC 79 ms
72,832 KB
testcase_22 AC 132 ms
76,544 KB
testcase_23 AC 56 ms
63,744 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a,b = [0]*n,[0]*n
for i in range(n):
    a[i],b[i] = map(int,input().split())
m = int(input())
cnt = [0]*m
for j in range(m):
    x,y = map(int,input().split())
    for i in range(n):
        if x <= a[i] and b[i] <= y:
            cnt[j] += 1
Max = max(cnt)
if Max == 0:
    print(0)
    exit(0)
for i in range(m):
    if cnt[i] == Max:
        print(i + 1)
0