結果

問題 No.2755 行列の共役類
ユーザー hiro1729hiro1729
提出日時 2024-05-10 22:20:00
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 462 bytes
コンパイル時間 190 ms
コンパイル使用メモリ 82,204 KB
実行使用メモリ 67,004 KB
最終ジャッジ日時 2024-05-10 22:20:07
合計ジャッジ時間 5,298 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 RE -
testcase_02 RE -
testcase_03 RE -
testcase_04 WA -
testcase_05 RE -
testcase_06 RE -
testcase_07 AC 35 ms
52,068 KB
testcase_08 RE -
testcase_09 RE -
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
testcase_13 AC 36 ms
52,676 KB
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 WA -
testcase_18 RE -
testcase_19 RE -
testcase_20 WA -
testcase_21 WA -
testcase_22 RE -
testcase_23 RE -
testcase_24 RE -
testcase_25 RE -
testcase_26 RE -
testcase_27 WA -
testcase_28 WA -
testcase_29 RE -
testcase_30 AC 34 ms
51,824 KB
testcase_31 AC 36 ms
52,820 KB
testcase_32 RE -
testcase_33 RE -
testcase_34 RE -
testcase_35 RE -
testcase_36 RE -
testcase_37 RE -
testcase_38 RE -
testcase_39 RE -
testcase_40 RE -
testcase_41 RE -
testcase_42 RE -
testcase_43 RE -
testcase_44 RE -
testcase_45 RE -
testcase_46 RE -
testcase_47 RE -
testcase_48 RE -
testcase_49 RE -
testcase_50 RE -
testcase_51 RE -
testcase_52 RE -
testcase_53 AC 36 ms
52,332 KB
testcase_54 RE -
testcase_55 RE -
testcase_56 AC 45 ms
54,224 KB
testcase_57 RE -
testcase_58 AC 35 ms
53,076 KB
testcase_59 RE -
testcase_60 AC 37 ms
52,748 KB
testcase_61 RE -
testcase_62 AC 40 ms
52,204 KB
testcase_63 RE -
testcase_64 RE -
testcase_65 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

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(C == 1)
print("100+")
0