結果

問題 No.2785 四乗足す四の末尾の0
ユーザー KDKJKDKJ
提出日時 2024-06-29 03:37:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 685 ms / 2,000 ms
コード長 973 bytes
コンパイル時間 134 ms
コンパイル使用メモリ 81,976 KB
実行使用メモリ 77,312 KB
最終ジャッジ日時 2024-06-29 03:37:49
合計ジャッジ時間 4,945 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,632 KB
testcase_01 AC 48 ms
54,272 KB
testcase_02 AC 40 ms
54,144 KB
testcase_03 AC 41 ms
53,760 KB
testcase_04 AC 38 ms
54,628 KB
testcase_05 AC 37 ms
54,400 KB
testcase_06 AC 36 ms
54,272 KB
testcase_07 AC 37 ms
53,760 KB
testcase_08 AC 39 ms
53,888 KB
testcase_09 AC 37 ms
54,400 KB
testcase_10 AC 43 ms
54,528 KB
testcase_11 AC 37 ms
54,144 KB
testcase_12 AC 52 ms
55,424 KB
testcase_13 AC 76 ms
76,544 KB
testcase_14 AC 146 ms
76,624 KB
testcase_15 AC 617 ms
77,056 KB
testcase_16 AC 38 ms
53,888 KB
testcase_17 AC 666 ms
77,184 KB
testcase_18 AC 645 ms
77,312 KB
testcase_19 AC 685 ms
77,304 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict,Counter,deque
from heapq import heappush,heappop


# n以下のすべての素数を列挙する
def eratosthenes_sieve(n):
    is_prime = [True] * (n + 1)
    is_prime[0] = is_prime[1] = False
    primes = set()
    for p in range(2, n + 1):
        if is_prime[p]:
            primes.add(p)
            for q in range(p * p, n + 1, p):
                is_prime[q] = False
    return sorted(list(primes))


def main():
    T = int(input())
    for _ in range(T):
        n = int(input())
        if abs(n) == 1:
            print("Yes")
            print(0)
        else:
            print("No")
            n = pow(n,4) + 4
            ok = 0
            ng = 100
            while ng - ok > 1:
                mid = (ok + ng)//2
                if n % pow(10,mid) == 0:
                    ok = mid
                else:
                    ng = mid
            print(ok)
        
    
    



if __name__ == '__main__':
    main()


0