結果

問題 No.2785 四乗足す四の末尾の0
ユーザー inksamuraiinksamurai
提出日時 2024-06-18 23:37:38
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 232 bytes
コンパイル時間 326 ms
コンパイル使用メモリ 81,876 KB
実行使用メモリ 84,456 KB
最終ジャッジ日時 2024-06-18 23:37:44
合計ジャッジ時間 6,158 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
58,780 KB
testcase_01 AC 39 ms
51,968 KB
testcase_02 AC 40 ms
51,456 KB
testcase_03 AC 40 ms
51,968 KB
testcase_04 AC 40 ms
52,352 KB
testcase_05 AC 42 ms
52,096 KB
testcase_06 AC 42 ms
52,096 KB
testcase_07 AC 41 ms
51,968 KB
testcase_08 AC 41 ms
51,968 KB
testcase_09 AC 41 ms
52,224 KB
testcase_10 AC 42 ms
52,224 KB
testcase_11 AC 41 ms
51,968 KB
testcase_12 AC 61 ms
68,864 KB
testcase_13 AC 107 ms
75,960 KB
testcase_14 AC 373 ms
75,904 KB
testcase_15 TLE -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
権限があれば一括ダウンロードができます

ソースコード

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
	for i in range(36):
		p=10**i
		y=1
		for j in range(4):
			y*=x
			y%=p
		y+=4
		if y%p==0:
			ans=i
	print(ans)
0