結果

問題 No.647 明太子
ユーザー pluto77pluto77
提出日時 2018-05-04 15:33:35
言語 PyPy2
(7.3.15)
結果
WA  
実行時間 -
コード長 422 bytes
コンパイル時間 1,113 ms
コンパイル使用メモリ 76,972 KB
実行使用メモリ 79,872 KB
最終ジャッジ日時 2024-06-28 01:06:31
合計ジャッジ時間 4,790 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 76 ms
75,276 KB
testcase_01 AC 76 ms
75,648 KB
testcase_02 AC 76 ms
75,520 KB
testcase_03 AC 75 ms
75,520 KB
testcase_04 AC 75 ms
75,520 KB
testcase_05 AC 73 ms
75,708 KB
testcase_06 AC 75 ms
75,776 KB
testcase_07 AC 98 ms
77,312 KB
testcase_08 WA -
testcase_09 AC 113 ms
77,992 KB
testcase_10 AC 105 ms
78,080 KB
testcase_11 AC 92 ms
78,464 KB
testcase_12 AC 102 ms
78,080 KB
testcase_13 AC 118 ms
78,600 KB
testcase_14 AC 326 ms
79,672 KB
testcase_15 AC 123 ms
78,720 KB
testcase_16 AC 98 ms
78,592 KB
testcase_17 AC 258 ms
79,744 KB
testcase_18 AC 259 ms
79,756 KB
testcase_19 AC 155 ms
78,592 KB
testcase_20 AC 158 ms
78,976 KB
testcase_21 AC 106 ms
78,976 KB
testcase_22 AC 229 ms
79,872 KB
testcase_23 AC 89 ms
78,508 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#yuki647
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
res=[]
for i in xrange(m):
 if cnt[i]==max(cnt):
  res.append(i+1)
if cnt[0]==0:
 print 0
else:
 for i in xrange(len(res)):
  print res[i]
 
0