結果

問題 No.355 数当てゲーム(2)
ユーザー cielciel
提出日時 2016-04-01 23:29:42
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 1,616 ms / 2,000 ms
コード長 944 bytes
コンパイル時間 186 ms
コンパイル使用メモリ 76,928 KB
実行使用メモリ 114,620 KB
平均クエリ数 5.25
最終ジャッジ日時 2024-07-16 09:21:41
合計ジャッジ時間 58,710 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 314 ms
112,464 KB
testcase_01 AC 388 ms
112,580 KB
testcase_02 AC 1,542 ms
114,084 KB
testcase_03 AC 257 ms
111,708 KB
testcase_04 AC 1,289 ms
113,744 KB
testcase_05 AC 566 ms
112,500 KB
testcase_06 AC 421 ms
112,820 KB
testcase_07 AC 1,307 ms
113,888 KB
testcase_08 AC 1,201 ms
113,036 KB
testcase_09 AC 403 ms
112,344 KB
testcase_10 AC 1,286 ms
113,104 KB
testcase_11 AC 1,220 ms
113,744 KB
testcase_12 AC 1,237 ms
114,620 KB
testcase_13 AC 1,314 ms
113,480 KB
testcase_14 AC 1,169 ms
112,780 KB
testcase_15 AC 570 ms
113,016 KB
testcase_16 AC 324 ms
111,940 KB
testcase_17 AC 1,283 ms
113,708 KB
testcase_18 AC 1,298 ms
113,396 KB
testcase_19 AC 597 ms
113,488 KB
testcase_20 AC 1,313 ms
113,368 KB
testcase_21 AC 389 ms
112,344 KB
testcase_22 AC 258 ms
112,492 KB
testcase_23 AC 318 ms
112,996 KB
testcase_24 AC 582 ms
112,472 KB
testcase_25 AC 263 ms
112,600 KB
testcase_26 AC 338 ms
113,456 KB
testcase_27 AC 1,293 ms
113,740 KB
testcase_28 AC 268 ms
112,608 KB
testcase_29 AC 298 ms
112,600 KB
testcase_30 AC 1,288 ms
113,880 KB
testcase_31 AC 1,261 ms
114,060 KB
testcase_32 AC 1,616 ms
113,664 KB
testcase_33 AC 1,368 ms
113,752 KB
testcase_34 AC 1,249 ms
112,728 KB
testcase_35 AC 268 ms
112,464 KB
testcase_36 AC 571 ms
113,096 KB
testcase_37 AC 301 ms
112,976 KB
testcase_38 AC 309 ms
112,472 KB
testcase_39 AC 1,286 ms
113,512 KB
testcase_40 AC 1,465 ms
113,872 KB
testcase_41 AC 373 ms
112,976 KB
testcase_42 AC 288 ms
112,716 KB
testcase_43 AC 1,279 ms
113,512 KB
testcase_44 AC 261 ms
112,528 KB
testcase_45 AC 1,259 ms
112,976 KB
testcase_46 AC 396 ms
112,484 KB
testcase_47 AC 328 ms
112,976 KB
testcase_48 AC 325 ms
112,140 KB
testcase_49 AC 1,289 ms
112,720 KB
testcase_50 AC 279 ms
112,240 KB
testcase_51 AC 1,308 ms
113,232 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(last,hit,blow):
	global lst
	if last is None:
		lst=genlist()
		return random.choice(lst)
	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
	if sys.version_info[0]>=3: raw_input=input
	q=None
	hit=blow=0
	while True:
		s=checkio(q,hit,blow)
		print(' '.join(s))
		sys.stdout.flush()
		hit,blow=map(int,raw_input().split())
		if hit==4:break
		q=s
0