結果

問題 No.647 明太子
ユーザー nohakai3nohakai3
提出日時 2022-07-30 11:21:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 234 ms / 4,500 ms
コード長 346 bytes
コンパイル時間 188 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 77,312 KB
最終ジャッジ日時 2024-07-20 07:32:34
合計ジャッジ時間 3,249 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,840 KB
testcase_01 AC 42 ms
52,096 KB
testcase_02 AC 41 ms
51,840 KB
testcase_03 AC 38 ms
52,224 KB
testcase_04 AC 38 ms
52,096 KB
testcase_05 AC 40 ms
51,584 KB
testcase_06 AC 39 ms
51,840 KB
testcase_07 AC 48 ms
59,008 KB
testcase_08 AC 54 ms
59,392 KB
testcase_09 AC 73 ms
64,384 KB
testcase_10 AC 81 ms
67,200 KB
testcase_11 AC 61 ms
65,280 KB
testcase_12 AC 76 ms
69,120 KB
testcase_13 AC 93 ms
72,064 KB
testcase_14 AC 222 ms
77,312 KB
testcase_15 AC 112 ms
76,672 KB
testcase_16 AC 68 ms
67,200 KB
testcase_17 AC 233 ms
77,184 KB
testcase_18 AC 234 ms
77,184 KB
testcase_19 AC 113 ms
76,928 KB
testcase_20 AC 106 ms
77,056 KB
testcase_21 AC 103 ms
76,800 KB
testcase_22 AC 224 ms
77,312 KB
testcase_23 AC 58 ms
64,896 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
l=[list(map(int,input().split())) for i in range(n)]
m=int(input())
c=[0]*m


for i in range(m):
    p,s=map(int,input().split())
    t=0
    for j in range(n):
        if p<=l[j][0] and s>=l[j][1]:
            t+=1
    c[i]=t

if sum(c)==0:
    print(0)
else:
    for i in range(m):
        if c[i]==max(c):
            print(i+1)
0