1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50
|
arr0 = [249, 91, 149, 113, 16, 91, 53, 41] arr1 = [43, 1, 6, 69, 20, 62, 6, 44, 24, 113, 6, 35, 0, 3, 6, 44, 20 ,22 ,127, 60] arr2 = [90, 100, 87, 109, 86, 108, 86, 105, 90, 104, 88, 102] all = None flag = raw_input() if check0(flag) and check1(flag) and check2(flag) and check3(flag): print("ok") else: print("no")
def genexpr(s): result = [] for each in s: if ord(each) > 32 and ord(each) < 128: result.append(ord(each)) return result
def check0(s): return genexpr(s)
def check1(s): if len(s) < 100 and len(s)*len(s)%777^233 ==513: return True else: return False def check2(s): if ((((ord(s[0])*128 + ord(s[1]))*128 + ord(s[2]))*128 + ord(s[3])*128) + ord(s[4])*128 + ord(s[5]) == 3533889469877: if ord(s[-1]) == 125: return True return False
def check3(s): arr = map(ord,s) a = arr[6:30:3] for i in range(len(a)): if (a[i]*17684+372511)%257 != arr0[i]: return False b = arr[-2:33:-1]*5 c = map(lambda x,y:x^y,zip(b, arr[7:27])) if c!=arr1: return False p = 0 for i in range(28, 34): if (arr[i]+107)/16+77 !=arr2[p] and (arr[i]+117)%16+99 != arr2[p+1]: return False p = p+2 return True
|