結果

問題 No.647 明太子
ユーザー dangodango
提出日時 2023-06-06 20:53:35
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 353 bytes
コンパイル時間 182 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 271,212 KB
最終ジャッジ日時 2024-06-09 06:20:33
合計ジャッジ時間 4,368 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 34 ms
52,224 KB
testcase_02 AC 35 ms
51,712 KB
testcase_03 AC 32 ms
51,456 KB
testcase_04 AC 32 ms
51,712 KB
testcase_05 AC 31 ms
51,712 KB
testcase_06 AC 32 ms
51,456 KB
testcase_07 AC 38 ms
59,520 KB
testcase_08 AC 37 ms
59,648 KB
testcase_09 AC 56 ms
72,448 KB
testcase_10 AC 70 ms
75,392 KB
testcase_11 AC 50 ms
67,200 KB
testcase_12 AC 64 ms
75,648 KB
testcase_13 AC 80 ms
76,672 KB
testcase_14 AC 264 ms
98,176 KB
testcase_15 AC 92 ms
76,800 KB
testcase_16 AC 62 ms
75,648 KB
testcase_17 AC 299 ms
99,584 KB
testcase_18 AC 289 ms
102,272 KB
testcase_19 AC 80 ms
76,868 KB
testcase_20 AC 86 ms
76,288 KB
testcase_21 AC 71 ms
72,832 KB
testcase_22 MLE -
testcase_23 AC 43 ms
62,208 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
members = [tuple(map(int, input().split())) for _ in range(N)]
M = int(input())

count = [0] * M
for i in range(1, M):
    X, Y = map(int, input().split())
    count[i] = len([{a, b} for a, b in members if X <= a and Y >= b])

if max(count) == 0:
  print(0)
else:
  for x in [i for i in range(M) if count[i] == max(count)]:
    print(x)
0