結果

問題 No.647 明太子
ユーザー takeytakey
提出日時 2018-03-01 12:59:11
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 1,122 bytes
コンパイル時間 71 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 12,928 KB
最終ジャッジ日時 2024-06-07 22:12:16
合計ジャッジ時間 1,538 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 RE -
testcase_02 RE -
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
testcase_23 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#-*- coding: utf-8 -*-

# TLE: 3_corner_4.txt
if __name__ == "__main__":
  N = int(input())
  conditions = [list(map(int, input().split())) for i in range(N)]
  M = int(input())
  mentaikos  = [list(map(int, input().split())) for i in range(M)]
  purchased = [0 for i in range(M)]
  kiseki    = [0] # 奇跡の明太子
  max_purchased_num = 0
  # 奇跡の明太子を調べる
  for i in range(M):
    # 奇跡の明太子と同じならスキップ
    for k in range(kiseki):
      if k == 0:
        break
      if mentaikos[i] == mentaikos[k]:
        kiseki.append(i+1)
        continue
    # 値段と辛さを走査する
    for j in range(N):
      if mentaikos[i][0] > conditions[j][0]:
        # 値段高いなら
        continue
      if mentaikos[i][1] < conditions[j][1]:
        # 辛くないなら
        continue
      purchased[i] += 1
    if purchased[i] > max_purchased_num:
      max_purchased_num = purchased[i]
      kiseki = []
      kiseki.append(i+1)
    elif purchased[i] == max_purchased_num and max_purchased_num != 0:
      kiseki.append(i+1)
  # 出力
  for i in kiseki:
    print(i)
0