結果
| 問題 | 
                            No.2755 行列の共役類
                             | 
                    
| コンテスト | |
| ユーザー | 
                             | 
                    
| 提出日時 | 2024-05-10 22:19:22 | 
| 言語 | PyPy3  (7.3.15)  | 
                    
| 結果 | 
                             
                                RE
                                 
                             
                            
                         | 
                    
| 実行時間 | - | 
| コード長 | 466 bytes | 
| コンパイル時間 | 328 ms | 
| コンパイル使用メモリ | 82,440 KB | 
| 実行使用メモリ | 67,756 KB | 
| 最終ジャッジ日時 | 2024-12-20 06:00:32 | 
| 合計ジャッジ時間 | 6,437 ms | 
| 
                            ジャッジサーバーID (参考情報)  | 
                        judge2 / judge3 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| other | RE * 66 | 
ソースコード
def is_prime(N: int):
	if N <= 1:
		return False
	if N == 2:
		return True
	if N % 2 == 0:
		return False
	s = 0
	d = N - 1
	while d % 2 == 0:
		s += 1
		d >>= 1
	for a in [2, 325, 9375, 28178, 450775, 9780504, 1795265022]:
		if a % N == 0:
			return True
		x = pow(a, d, N)
		if x != 1:
			t = 0
			while t < s and x < N - 1:
				t += 1
				x = x * x % N
			if t == s:
				return False
	return True
B, C = map(int, input().split())
assert(isprime(B))
print("100+")