結果

問題 No.647 明太子
ユーザー first_vilfirst_vil
提出日時 2021-11-15 19:02:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 172 ms / 4,500 ms
コード長 376 bytes
コンパイル時間 428 ms
コンパイル使用メモリ 82,688 KB
実行使用メモリ 77,152 KB
最終ジャッジ日時 2024-05-08 19:02:29
合計ジャッジ時間 4,200 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,712 KB
testcase_01 AC 39 ms
52,352 KB
testcase_02 AC 38 ms
51,712 KB
testcase_03 AC 39 ms
52,224 KB
testcase_04 AC 39 ms
52,352 KB
testcase_05 AC 39 ms
52,096 KB
testcase_06 AC 39 ms
52,200 KB
testcase_07 AC 45 ms
59,008 KB
testcase_08 AC 46 ms
59,648 KB
testcase_09 AC 56 ms
63,488 KB
testcase_10 AC 63 ms
66,176 KB
testcase_11 AC 56 ms
64,768 KB
testcase_12 AC 64 ms
67,840 KB
testcase_13 AC 82 ms
73,984 KB
testcase_14 AC 154 ms
77,152 KB
testcase_15 AC 90 ms
74,368 KB
testcase_16 AC 62 ms
65,920 KB
testcase_17 AC 172 ms
76,800 KB
testcase_18 AC 157 ms
76,416 KB
testcase_19 AC 88 ms
76,416 KB
testcase_20 AC 91 ms
76,548 KB
testcase_21 AC 78 ms
72,704 KB
testcase_22 AC 132 ms
76,928 KB
testcase_23 AC 55 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