結果

問題 No.850 企業コンテスト2位
ユーザー chocoruskchocorusk
提出日時 2019-07-04 15:59:01
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 61 ms / 2,000 ms
コード長 610 bytes
コンパイル時間 148 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 27,736 KB
平均クエリ数 200.11
最終ジャッジ日時 2024-07-16 17:17:20
合計ジャッジ時間 3,232 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
27,224 KB
testcase_01 AC 48 ms
27,224 KB
testcase_02 AC 54 ms
26,968 KB
testcase_03 AC 45 ms
27,480 KB
testcase_04 AC 46 ms
27,224 KB
testcase_05 AC 44 ms
27,736 KB
testcase_06 AC 48 ms
27,224 KB
testcase_07 AC 52 ms
27,608 KB
testcase_08 AC 52 ms
27,224 KB
testcase_09 AC 52 ms
27,096 KB
testcase_10 AC 57 ms
27,096 KB
testcase_11 AC 60 ms
27,608 KB
testcase_12 AC 57 ms
27,480 KB
testcase_13 AC 57 ms
27,352 KB
testcase_14 AC 57 ms
27,224 KB
testcase_15 AC 57 ms
27,224 KB
testcase_16 AC 56 ms
27,472 KB
testcase_17 AC 58 ms
27,352 KB
testcase_18 AC 58 ms
27,480 KB
testcase_19 AC 58 ms
27,224 KB
testcase_20 AC 57 ms
27,480 KB
testcase_21 AC 58 ms
26,968 KB
testcase_22 AC 59 ms
27,480 KB
testcase_23 AC 61 ms
27,608 KB
testcase_24 AC 57 ms
27,224 KB
testcase_25 AC 60 ms
27,480 KB
testcase_26 AC 58 ms
27,352 KB
testcase_27 AC 46 ms
27,080 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
n=int(input())
lose=[[] for i in range(n)]
v=[i for i in range(n)]
while len(v)>1:
  w=[]
  for i in range(0, len(v), 2):
    if i+1==len(v):
      w.append(v[i])
    else:
      print("? %d %d" % (v[i]+1, v[i+1]+1))
      sys.stdout.flush()
      res=int(input())
      res-=1
      w.append(res)
      if res==v[i]:
        lose[res].append(v[i+1])
      else:
        lose[res].append(v[i])
  v=w
a=v[0]
ans=lose[a][0]
for i in range(1, len(lose[a])):
  print("? %d %d" % (lose[a][i]+1, ans+1))
  sys.stdout.flush()
  res=int(input())
  res-=1
  ans=res
print("! %d" % (ans+1))
sys.stdout.flush()
0