結果

問題 No.355 数当てゲーム(2)
ユーザー cielciel
提出日時 2016-04-01 23:30:41
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 1,696 ms / 2,000 ms
コード長 932 bytes
コンパイル時間 170 ms
コンパイル使用メモリ 77,312 KB
実行使用メモリ 114,520 KB
平均クエリ数 5.23
最終ジャッジ日時 2024-07-16 09:22:48
合計ジャッジ時間 51,522 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 298 ms
112,976 KB
testcase_01 AC 1,273 ms
113,360 KB
testcase_02 AC 1,603 ms
113,664 KB
testcase_03 AC 572 ms
113,104 KB
testcase_04 AC 1,273 ms
113,400 KB
testcase_05 AC 602 ms
112,768 KB
testcase_06 AC 1,606 ms
113,732 KB
testcase_07 AC 354 ms
112,884 KB
testcase_08 AC 354 ms
111,952 KB
testcase_09 AC 314 ms
112,584 KB
testcase_10 AC 1,632 ms
113,672 KB
testcase_11 AC 628 ms
112,592 KB
testcase_12 AC 632 ms
112,464 KB
testcase_13 AC 631 ms
112,464 KB
testcase_14 AC 245 ms
112,336 KB
testcase_15 AC 346 ms
112,524 KB
testcase_16 AC 1,592 ms
113,872 KB
testcase_17 AC 433 ms
113,268 KB
testcase_18 AC 246 ms
112,464 KB
testcase_19 AC 1,254 ms
113,256 KB
testcase_20 AC 439 ms
112,508 KB
testcase_21 AC 345 ms
112,728 KB
testcase_22 AC 419 ms
113,400 KB
testcase_23 AC 1,643 ms
114,520 KB
testcase_24 AC 329 ms
111,964 KB
testcase_25 AC 611 ms
113,148 KB
testcase_26 AC 1,554 ms
113,880 KB
testcase_27 AC 1,678 ms
113,368 KB
testcase_28 AC 1,667 ms
113,752 KB
testcase_29 AC 602 ms
112,984 KB
testcase_30 AC 1,317 ms
113,624 KB
testcase_31 AC 1,261 ms
113,120 KB
testcase_32 AC 372 ms
112,772 KB
testcase_33 AC 1,696 ms
113,536 KB
testcase_34 AC 633 ms
112,728 KB
testcase_35 AC 184 ms
107,600 KB
testcase_36 AC 1,295 ms
113,488 KB
testcase_37 AC 423 ms
113,136 KB
testcase_38 AC 1,645 ms
113,460 KB
testcase_39 AC 1,684 ms
113,616 KB
testcase_40 AC 434 ms
113,016 KB
testcase_41 AC 1,657 ms
114,012 KB
testcase_42 AC 1,695 ms
113,864 KB
testcase_43 AC 1,696 ms
113,744 KB
testcase_44 AC 609 ms
112,364 KB
testcase_45 AC 281 ms
112,504 KB
testcase_46 AC 324 ms
112,836 KB
testcase_47 AC 1,590 ms
114,000 KB
testcase_48 AC 629 ms
112,592 KB
testcase_49 AC 1,557 ms
113,640 KB
testcase_50 AC 1,359 ms
113,616 KB
testcase_51 AC 229 ms
112,336 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