結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 86 ms
75,264 KB
testcase_01 AC 87 ms
75,264 KB
testcase_02 AC 88 ms
75,648 KB
testcase_03 AC 87 ms
75,392 KB
testcase_04 AC 86 ms
75,520 KB
testcase_05 AC 89 ms
75,264 KB
testcase_06 AC 87 ms
75,264 KB
testcase_07 AC 101 ms
77,440 KB
testcase_08 AC 99 ms
77,440 KB
testcase_09 AC 110 ms
77,952 KB
testcase_10 AC 114 ms
78,464 KB
testcase_11 AC 104 ms
77,952 KB
testcase_12 AC 117 ms
78,208 KB
testcase_13 AC 136 ms
78,592 KB
testcase_14 AC 365 ms
79,872 KB
testcase_15 AC 138 ms
78,720 KB
testcase_16 AC 111 ms
78,464 KB
testcase_17 AC 279 ms
79,616 KB
testcase_18 AC 282 ms
79,744 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 251 ms
79,872 KB
testcase_23 AC 103 ms
77,952 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]:
 print 0
else:
 for i in xrange(len(res)):
  print res[i]
  
 
0