結果

問題 No.2785 四乗足す四の末尾の0
ユーザー 👑 p-adicp-adic
提出日時 2023-02-24 01:45:48
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 429 bytes
コンパイル時間 183 ms
コンパイル使用メモリ 82,428 KB
実行使用メモリ 77,728 KB
最終ジャッジ日時 2024-07-23 18:17:27
合計ジャッジ時間 11,213 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,284 KB
testcase_01 AC 40 ms
52,648 KB
testcase_02 AC 37 ms
52,068 KB
testcase_03 AC 36 ms
52,552 KB
testcase_04 AC 38 ms
52,608 KB
testcase_05 AC 36 ms
53,096 KB
testcase_06 AC 37 ms
52,332 KB
testcase_07 AC 37 ms
53,136 KB
testcase_08 AC 37 ms
52,128 KB
testcase_09 AC 40 ms
52,532 KB
testcase_10 AC 37 ms
53,568 KB
testcase_11 AC 37 ms
52,672 KB
testcase_12 AC 41 ms
55,736 KB
testcase_13 AC 85 ms
75,636 KB
testcase_14 AC 266 ms
76,528 KB
testcase_15 AC 1,727 ms
77,104 KB
testcase_16 AC 39 ms
54,244 KB
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

# 誤解法(フェルマーテスト)チェック
T = int(input())
Yes = "Yes"
No = "No"
for t in range(T):
	N = int(input())
	if ( N == 1 ) or ( N == -1 ):
		print( Yes )
		print( 0 )
	else:
		N *= N
		N2 = max( N , 2 )
		N *= N
		N += 4
		count = 0
		while N % 10 == 0:
			N //= 10
			count += 1
		if count > 0:
			print( No )
			print( count )
		else:
			print( Yes if( pow( 2 , N - 1 , N ) == 1 ) else No )
			print( 0 )
0