結果

問題 No.647 明太子
ユーザー pluto77pluto77
提出日時 2018-02-19 13:57:43
言語 PyPy2
(7.3.15)
結果
WA  
実行時間 -
コード長 560 bytes
コンパイル時間 1,118 ms
コンパイル使用メモリ 76,308 KB
実行使用メモリ 79,856 KB
最終ジャッジ日時 2024-06-07 22:05:36
合計ジャッジ時間 4,394 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 68 ms
75,292 KB
testcase_01 AC 66 ms
75,408 KB
testcase_02 WA -
testcase_03 AC 68 ms
75,696 KB
testcase_04 AC 69 ms
75,672 KB
testcase_05 AC 68 ms
75,176 KB
testcase_06 AC 67 ms
75,400 KB
testcase_07 AC 76 ms
76,984 KB
testcase_08 AC 70 ms
76,308 KB
testcase_09 AC 88 ms
78,244 KB
testcase_10 AC 90 ms
78,132 KB
testcase_11 AC 80 ms
77,840 KB
testcase_12 AC 89 ms
78,252 KB
testcase_13 AC 103 ms
78,768 KB
testcase_14 AC 160 ms
79,420 KB
testcase_15 AC 106 ms
79,144 KB
testcase_16 AC 86 ms
78,336 KB
testcase_17 AC 179 ms
79,544 KB
testcase_18 AC 189 ms
79,516 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 249 ms
79,856 KB
testcase_23 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#yuki647
import sys

n=int(raw_input())
ab=[]
for i in xrange(n):
 a,b=map(int,raw_input().split())
 ab.append([a,b])
m=int(raw_input())
xy=[]
for i in xrange(m):
 x,y=map(int,raw_input().split())
 xy.append([x,y,0,i+1])
ab.sort()
xy.sort()
for i in xrange(n):
 for j in xrange(m):
  if xy[j][0]<=ab[i][0] and xy[j][1]>=ab[i][1]:
   xy[j][2]+=1
  if xy[j][0]>ab[i][0]:
   break
res=sorted(xy,key=lambda x:x[2], reverse=True)
if res[0][3]==0:
 print 0
 sys.exit()
print res[0][3]
for i in xrange(1,m):
 if res[i][2]==res[0][2]:
  print res[i][3]
 else:
  break
0