結果

問題 No.647 明太子
ユーザー trineutrontrineutron
提出日時 2020-12-17 21:59:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 234 ms / 4,500 ms
コード長 478 bytes
コンパイル時間 152 ms
コンパイル使用メモリ 81,948 KB
実行使用メモリ 77,224 KB
最終ジャッジ日時 2024-09-21 08:18:41
合計ジャッジ時間 3,224 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,644 KB
testcase_01 AC 42 ms
54,012 KB
testcase_02 AC 38 ms
53,776 KB
testcase_03 AC 38 ms
52,484 KB
testcase_04 AC 39 ms
52,572 KB
testcase_05 AC 38 ms
52,476 KB
testcase_06 AC 38 ms
52,396 KB
testcase_07 AC 46 ms
61,192 KB
testcase_08 AC 45 ms
60,372 KB
testcase_09 AC 59 ms
65,440 KB
testcase_10 AC 66 ms
67,392 KB
testcase_11 AC 53 ms
62,924 KB
testcase_12 AC 64 ms
66,040 KB
testcase_13 AC 84 ms
73,740 KB
testcase_14 AC 176 ms
77,224 KB
testcase_15 AC 90 ms
73,108 KB
testcase_16 AC 62 ms
65,948 KB
testcase_17 AC 223 ms
76,976 KB
testcase_18 AC 234 ms
76,904 KB
testcase_19 AC 89 ms
76,520 KB
testcase_20 AC 84 ms
74,848 KB
testcase_21 AC 73 ms
72,052 KB
testcase_22 AC 158 ms
77,144 KB
testcase_23 AC 49 ms
61,156 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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