結果

問題 No.355 数当てゲーム(2)
ユーザー cielciel
提出日時 2016-04-01 23:31:00
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 247 ms / 2,000 ms
コード長 932 bytes
コンパイル時間 956 ms
コンパイル使用メモリ 76,460 KB
実行使用メモリ 112,456 KB
平均クエリ数 5.42
最終ジャッジ日時 2024-07-16 23:20:29
合計ジャッジ時間 16,094 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 234 ms
111,356 KB
testcase_01 AC 238 ms
112,136 KB
testcase_02 AC 239 ms
111,356 KB
testcase_03 AC 234 ms
112,116 KB
testcase_04 AC 239 ms
112,288 KB
testcase_05 AC 228 ms
112,120 KB
testcase_06 AC 239 ms
111,828 KB
testcase_07 AC 228 ms
111,380 KB
testcase_08 AC 228 ms
111,884 KB
testcase_09 AC 226 ms
111,484 KB
testcase_10 AC 240 ms
111,708 KB
testcase_11 AC 226 ms
111,592 KB
testcase_12 AC 234 ms
111,712 KB
testcase_13 AC 231 ms
111,944 KB
testcase_14 AC 224 ms
111,724 KB
testcase_15 AC 229 ms
111,212 KB
testcase_16 AC 243 ms
111,724 KB
testcase_17 AC 229 ms
112,260 KB
testcase_18 AC 223 ms
111,796 KB
testcase_19 AC 236 ms
111,872 KB
testcase_20 AC 229 ms
111,972 KB
testcase_21 AC 231 ms
111,868 KB
testcase_22 AC 228 ms
111,764 KB
testcase_23 AC 243 ms
112,140 KB
testcase_24 AC 232 ms
111,592 KB
testcase_25 AC 230 ms
112,016 KB
testcase_26 AC 243 ms
111,988 KB
testcase_27 AC 247 ms
112,108 KB
testcase_28 AC 244 ms
112,132 KB
testcase_29 AC 234 ms
111,584 KB
testcase_30 AC 237 ms
111,720 KB
testcase_31 AC 241 ms
112,004 KB
testcase_32 AC 232 ms
111,764 KB
testcase_33 AC 242 ms
111,608 KB
testcase_34 AC 234 ms
111,604 KB
testcase_35 AC 187 ms
107,888 KB
testcase_36 AC 244 ms
112,452 KB
testcase_37 AC 227 ms
111,968 KB
testcase_38 AC 239 ms
112,132 KB
testcase_39 AC 239 ms
112,108 KB
testcase_40 AC 229 ms
112,440 KB
testcase_41 AC 240 ms
111,968 KB
testcase_42 AC 237 ms
111,984 KB
testcase_43 AC 238 ms
111,456 KB
testcase_44 AC 230 ms
111,740 KB
testcase_45 AC 226 ms
111,056 KB
testcase_46 AC 224 ms
111,736 KB
testcase_47 AC 240 ms
111,860 KB
testcase_48 AC 229 ms
111,468 KB
testcase_49 AC 243 ms
112,456 KB
testcase_50 AC 235 ms
112,348 KB
testcase_51 AC 224 ms
111,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(last,hit,blow):
	global lst
	if last is None:
		lst=genlist()
		return '0123'
	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