結果
問題 | No.282 おもりと天秤(2) |
ユーザー | yaoshimax |
提出日時 | 2016-05-13 17:35:27 |
言語 | PyPy2 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 793 bytes |
コンパイル時間 | 879 ms |
コンパイル使用メモリ | 77,440 KB |
実行使用メモリ | 116,856 KB |
平均クエリ数 | 123.42 |
最終ジャッジ日時 | 2024-07-16 10:08:59 |
合計ジャッジ時間 | 13,033 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 115 ms
91,992 KB |
testcase_01 | AC | 157 ms
94,688 KB |
testcase_02 | AC | 138 ms
94,176 KB |
testcase_03 | AC | 128 ms
94,176 KB |
testcase_04 | AC | 128 ms
94,816 KB |
testcase_05 | AC | 150 ms
94,560 KB |
testcase_06 | AC | 207 ms
95,840 KB |
testcase_07 | AC | 119 ms
94,696 KB |
testcase_08 | AC | 161 ms
96,244 KB |
testcase_09 | AC | 101 ms
92,000 KB |
testcase_10 | AC | 3,214 ms
96,756 KB |
testcase_11 | TLE | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
ソースコード
import sys N=int(raw_input()) ans=[] used=[False for i in range(N+1)] used[0]=True for n in range(N): cand = [i for i in range(N+1) if used[i]==False] while len(cand)>=2: print '?', for c in cand: print c, for d in range(N*2-len(cand)): print 0, print sys.stdout.flush() ncand=[] res=raw_input().split() for i in range(0,len(cand),2): if i==len(cand)-1: ncand.append(cand[i]) elif res[i/2]=='>': ncand.append(cand[i+1]) elif res[i/2]=='<': ncand.append(cand[i]) cand=ncand ans.append(cand[0]) used[cand[0]]=True print '!', for a in ans: print a, print sys.stdout.flush()