結果

問題 No.647 明太子
ユーザー dangodango
提出日時 2023-06-06 20:58:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 242 ms / 4,500 ms
コード長 376 bytes
コンパイル時間 240 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 77,668 KB
最終ジャッジ日時 2024-06-09 06:20:36
合計ジャッジ時間 3,326 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,968 KB
testcase_01 AC 41 ms
51,840 KB
testcase_02 AC 42 ms
52,224 KB
testcase_03 AC 38 ms
52,224 KB
testcase_04 AC 42 ms
51,712 KB
testcase_05 AC 37 ms
52,224 KB
testcase_06 AC 38 ms
51,456 KB
testcase_07 AC 46 ms
59,648 KB
testcase_08 AC 51 ms
59,392 KB
testcase_09 AC 64 ms
64,640 KB
testcase_10 AC 68 ms
66,944 KB
testcase_11 AC 62 ms
65,792 KB
testcase_12 AC 74 ms
69,760 KB
testcase_13 AC 87 ms
71,808 KB
testcase_14 AC 199 ms
77,312 KB
testcase_15 AC 107 ms
76,544 KB
testcase_16 AC 69 ms
67,200 KB
testcase_17 AC 238 ms
77,184 KB
testcase_18 AC 242 ms
77,312 KB
testcase_19 AC 109 ms
76,800 KB
testcase_20 AC 109 ms
76,800 KB
testcase_21 AC 94 ms
77,056 KB
testcase_22 AC 221 ms
77,668 KB
testcase_23 AC 61 ms
65,280 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
L = [list(map(int,input().split())) for _ 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