結果

問題 No.308 素数は通れません
ユーザー fmhrfmhr
提出日時 2015-12-01 01:58:02
言語 Python2
(2.7.18)
結果
WA  
実行時間 -
コード長 1,047 bytes
コンパイル時間 452 ms
コンパイル使用メモリ 6,532 KB
実行使用メモリ 10,332 KB
最終ジャッジ日時 2023-10-12 06:54:34
合計ジャッジ時間 6,667 ms
ジャッジサーバーID
(参考情報)
judge11 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 11 ms
10,332 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 WA -
testcase_47 WA -
testcase_48 WA -
testcase_49 WA -
testcase_50 WA -
testcase_51 WA -
testcase_52 WA -
testcase_53 WA -
testcase_54 WA -
testcase_55 WA -
testcase_56 WA -
testcase_57 WA -
testcase_58 WA -
testcase_59 WA -
testcase_60 WA -
testcase_61 TLE -
testcase_62 TLE -
testcase_63 -- -
testcase_64 -- -
testcase_65 -- -
testcase_66 -- -
testcase_67 -- -
testcase_68 -- -
testcase_69 -- -
testcase_70 -- -
testcase_71 -- -
testcase_72 -- -
testcase_73 -- -
testcase_74 -- -
testcase_75 -- -
testcase_76 -- -
testcase_77 -- -
testcase_78 -- -
testcase_79 -- -
testcase_80 -- -
testcase_81 -- -
testcase_82 -- -
testcase_83 -- -
testcase_84 -- -
testcase_85 -- -
testcase_86 -- -
testcase_87 -- -
testcase_88 -- -
testcase_89 -- -
testcase_90 -- -
testcase_91 -- -
testcase_92 -- -
testcase_93 -- -
testcase_94 -- -
testcase_95 -- -
testcase_96 -- -
testcase_97 -- -
testcase_98 -- -
testcase_99 -- -
testcase_100 -- -
testcase_101 -- -
testcase_102 -- -
testcase_103 -- -
testcase_104 -- -
testcase_105 -- -
testcase_106 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

def gcd(a, b):
		while b != 0:
				a, b = b, a % b
		return a

def lcm(a, b):
		return (a*b) / gcd(a, b)

def isPrime(p):
		return (p > 1) and all(f == p for f,e in factored(p))

primeList = [2,3,5,7]
def primes():
		for p in primeList:
				yield p
		while 1:
				p += 2
				while not isPrime(p):
						p += 2
				primeList.append(p)
				yield p

def factored(a):
		for p in primes():
				j = 0
				while a%p == 0:
						a /= p
						j += 1
				if j > 0:
						yield (p,j)
				if a < p*p: break
		if a > 1:
				yield (a,1)


def multOrdr1(a,(p,e) ):
		m = p**e
		t = (p-1)*(p**(e-1)) #  = Phi(p**e) where p prime
		qs = [1,]
		for f in factored(t):
				qs = [ q * f[0]**j for j in range(1+f[1]) for q in qs ]
		qs.sort()

		for q in qs:
				if pow( a, q, m )==1: break
		return q


def multOrder(a,m):
		assert gcd(a,m) == 1
		mofs = (multOrdr1(a,r) for r in factored(m))
		return reduce(lcm, mofs, 1)


if __name__ == "__main__":
		n = int(raw_input())
		print multOrder(4, 2*n+1)        # 100
#		for i in range(25):
#			print multOrder(4, 2*i+1)
0