結果

問題 No.355 数当てゲーム(2)
ユーザー cielciel
提出日時 2016-04-01 23:23:52
言語 PyPy2
(7.3.15)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 966 bytes
コンパイル時間 661 ms
コンパイル使用メモリ 76,908 KB
実行使用メモリ 114,212 KB
平均クエリ数 4.69
最終ジャッジ日時 2024-07-16 23:16:08
合計ジャッジ時間 71,755 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 705 ms
112,112 KB
testcase_01 AC 1,586 ms
114,088 KB
testcase_02 AC 288 ms
111,568 KB
testcase_03 AC 322 ms
112,360 KB
testcase_04 AC 373 ms
112,152 KB
testcase_05 AC 1,767 ms
113,776 KB
testcase_06 AC 455 ms
112,752 KB
testcase_07 AC 1,894 ms
114,144 KB
testcase_08 AC 737 ms
113,344 KB
testcase_09 AC 492 ms
112,728 KB
testcase_10 AC 1,657 ms
113,268 KB
testcase_11 AC 355 ms
112,944 KB
testcase_12 AC 1,544 ms
113,380 KB
testcase_13 AC 376 ms
112,608 KB
testcase_14 AC 719 ms
112,376 KB
testcase_15 AC 493 ms
112,368 KB
testcase_16 AC 401 ms
112,824 KB
testcase_17 AC 394 ms
112,792 KB
testcase_18 AC 304 ms
112,680 KB
testcase_19 AC 689 ms
112,524 KB
testcase_20 AC 340 ms
112,408 KB
testcase_21 AC 329 ms
112,960 KB
testcase_22 AC 1,747 ms
113,504 KB
testcase_23 AC 1,866 ms
113,560 KB
testcase_24 AC 1,513 ms
113,520 KB
testcase_25 AC 1,589 ms
113,124 KB
testcase_26 AC 1,456 ms
112,944 KB
testcase_27 AC 313 ms
111,456 KB
testcase_28 AC 378 ms
112,240 KB
testcase_29 AC 782 ms
113,220 KB
testcase_30 AC 673 ms
113,644 KB
testcase_31 AC 1,544 ms
114,060 KB
testcase_32 AC 345 ms
112,328 KB
testcase_33 AC 1,411 ms
113,644 KB
testcase_34 AC 370 ms
112,760 KB
testcase_35 AC 292 ms
111,976 KB
testcase_36 AC 1,644 ms
113,856 KB
testcase_37 AC 760 ms
113,372 KB
testcase_38 AC 671 ms
112,368 KB
testcase_39 AC 1,550 ms
114,212 KB
testcase_40 AC 1,528 ms
113,260 KB
testcase_41 TLE -
testcase_42 AC 769 ms
112,824 KB
testcase_43 AC 1,499 ms
114,008 KB
testcase_44 AC 666 ms
112,376 KB
testcase_45 AC 1,582 ms
113,204 KB
testcase_46 AC 1,830 ms
113,092 KB
testcase_47 AC 1,840 ms
114,052 KB
testcase_48 AC 1,507 ms
114,092 KB
testcase_49 AC 346 ms
112,472 KB
testcase_50 AC 431 ms
112,768 KB
testcase_51 AC 329 ms
112,736 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/python
from collections import Counter
import itertools,random

digits=4

def hit_and_blow(a,b):
	hit=sum(a[i]==b[i] for i in range(digits))
	blow=len(a)+len(b)-len(set(iter(a+b)))
	return (hit,blow-hit)

def minimax(e):
	h={}
	for f in lst:
		x=hit_and_blow(e,f)
		if x not in h: h[x]=0
		h[x]+=1
	return (max(h.values()),e)

def genlist():
	return list(''.join(e) for e in itertools.permutations(iter('0123456789'),digits))

def checkio(data):
	global lst
	if len(data)==0:
		lst=genlist()
		return random.choice(lst)
	last=data[-1].split()
	hit=int(last[1][0])
	blow=int(last[1][2])
	last=last[0]
	for i in range(len(lst)-1,-1,-1):
		if hit_and_blow(lst[i],last)!=(hit,blow): lst.pop(i)
	return min(minimax(e) for e in lst)[1]
	#return random.choice(lst)

if __name__ == '__main__':
	import sys
	q=[]
	while True:
		s=checkio(q)
		print(' '.join(s))
		sys.stdout.flush()
		t=raw_input().strip()
		if t=='4 0':break
		q.append(s+' '+'H'.join(t.split()))
0