結果

問題 No.647 明太子
ユーザー pluto77pluto77
提出日時 2018-05-04 15:55:54
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 370 ms / 4,500 ms
コード長 495 bytes
コンパイル時間 161 ms
コンパイル使用メモリ 76,800 KB
実行使用メモリ 79,744 KB
最終ジャッジ日時 2024-06-28 01:06:41
合計ジャッジ時間 4,455 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 88 ms
75,264 KB
testcase_01 AC 89 ms
75,776 KB
testcase_02 AC 91 ms
75,264 KB
testcase_03 AC 90 ms
75,392 KB
testcase_04 AC 88 ms
75,776 KB
testcase_05 AC 90 ms
75,392 KB
testcase_06 AC 88 ms
75,392 KB
testcase_07 AC 95 ms
77,568 KB
testcase_08 AC 96 ms
77,568 KB
testcase_09 AC 110 ms
78,208 KB
testcase_10 AC 115 ms
78,336 KB
testcase_11 AC 107 ms
77,952 KB
testcase_12 AC 115 ms
78,208 KB
testcase_13 AC 133 ms
79,104 KB
testcase_14 AC 370 ms
79,488 KB
testcase_15 AC 140 ms
78,848 KB
testcase_16 AC 116 ms
78,592 KB
testcase_17 AC 279 ms
79,616 KB
testcase_18 AC 282 ms
79,488 KB
testcase_19 AC 176 ms
78,720 KB
testcase_20 AC 177 ms
78,720 KB
testcase_21 AC 124 ms
78,720 KB
testcase_22 AC 249 ms
79,744 KB
testcase_23 AC 101 ms
77,952 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#yuki647
import sys

n=int(raw_input())
ab=[map(int,raw_input().split()) for i in xrange(n)]
m=int(raw_input())
xy=[map(int,raw_input().split()) for i in xrange(m)]
cnt=[0 for i in xrange(m)]
for i in xrange(m):
 for j in xrange(n):
  if xy[i][0]<=ab[j][0] and xy[i][1]>=ab[j][1]:
   cnt[i]+=1
if len(cnt)<2 and cnt[0]==0:
 print 0
 sys.exit()
res=[]
for i in xrange(m):
 if max(cnt)==0:
  print 0
  sys.exit()
 elif cnt[i]==max(cnt):
  res.append(i+1)
for i in xrange(len(res)):
 print res[i]
 
0