結果

問題 No.647 明太子
ユーザー takakintakakin
提出日時 2020-04-24 01:08:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 203 ms / 4,500 ms
コード長 555 bytes
コンパイル時間 195 ms
コンパイル使用メモリ 81,800 KB
実行使用メモリ 74,120 KB
最終ジャッジ日時 2024-10-14 09:36:29
合計ジャッジ時間 2,769 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,824 KB
testcase_01 AC 40 ms
52,344 KB
testcase_02 AC 41 ms
52,136 KB
testcase_03 AC 37 ms
52,744 KB
testcase_04 AC 37 ms
53,040 KB
testcase_05 AC 38 ms
52,500 KB
testcase_06 AC 37 ms
52,268 KB
testcase_07 AC 47 ms
61,644 KB
testcase_08 AC 45 ms
60,976 KB
testcase_09 AC 55 ms
64,012 KB
testcase_10 AC 57 ms
65,988 KB
testcase_11 AC 51 ms
62,516 KB
testcase_12 AC 56 ms
64,316 KB
testcase_13 AC 65 ms
67,852 KB
testcase_14 AC 146 ms
72,744 KB
testcase_15 AC 75 ms
68,396 KB
testcase_16 AC 57 ms
65,272 KB
testcase_17 AC 195 ms
74,120 KB
testcase_18 AC 203 ms
73,840 KB
testcase_19 AC 66 ms
69,136 KB
testcase_20 AC 69 ms
68,264 KB
testcase_21 AC 56 ms
65,504 KB
testcase_22 AC 136 ms
73,864 KB
testcase_23 AC 47 ms
62,304 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=lambda: sys.stdin.readline().rstrip()
n=int(input())
AB=[]
XY=[]
append=AB.append
for _ in range(n):
  a,b=map(int,input().split())
  append(a*10**9+b)
append=XY.append
m=int(input())
for _ in range(m):
  a,b=map(int,input().split())
  append(a*10**9+b)

def f(a,b):
  if a//10**9>=b//10**9 and a%10**9<=b%10**9:
    return True
  else:
    return False
Ans=[0]*m
for i in range(n):
  for j in range(m):
    if f(AB[i],XY[j]):
      Ans[j]+=1
ma=max(Ans)
if ma!=0:
  for i in range(m):
    if Ans[i]==ma:
      print(i+1)
else:
  print(0)
0