結果

問題 No.2785 四乗足す四の末尾の0
ユーザー inksamuraiinksamurai
提出日時 2024-06-18 23:39:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 388 ms / 2,000 ms
コード長 280 bytes
コンパイル時間 514 ms
コンパイル使用メモリ 82,200 KB
実行使用メモリ 77,104 KB
最終ジャッジ日時 2024-06-18 23:39:39
合計ジャッジ時間 4,244 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,788 KB
testcase_01 AC 37 ms
51,940 KB
testcase_02 AC 38 ms
52,568 KB
testcase_03 AC 37 ms
51,940 KB
testcase_04 AC 37 ms
52,480 KB
testcase_05 AC 35 ms
52,668 KB
testcase_06 AC 36 ms
52,320 KB
testcase_07 AC 36 ms
51,964 KB
testcase_08 AC 37 ms
52,820 KB
testcase_09 AC 36 ms
53,504 KB
testcase_10 AC 37 ms
52,408 KB
testcase_11 AC 38 ms
53,604 KB
testcase_12 AC 55 ms
66,316 KB
testcase_13 AC 85 ms
76,792 KB
testcase_14 AC 113 ms
76,636 KB
testcase_15 AC 370 ms
76,608 KB
testcase_16 AC 37 ms
53,080 KB
testcase_17 AC 357 ms
77,104 KB
testcase_18 AC 360 ms
76,616 KB
testcase_19 AC 388 ms
76,768 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

t=int(input())
for _ in range(t):
	n=int(input())
	if abs(n)==1:
		print('Yes')
	else:
		print('No')
	x=abs(n)
	ans=0
	l,r=0,36
	opt=0
	while l<=r:
		m=(l+r)//2
		p=10**m
		y=1
		for j in range(4):
			y*=x
			y%=p
		y+=4
		if y%p==0:
			opt=m
			l=m+1
		else:
			r=m-1
	print(opt)
0