結果

問題 No.2785 四乗足す四の末尾の0
ユーザー tanaka255tanaka255
提出日時 2024-06-14 22:53:06
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 94 ms / 2,000 ms
コード長 1,296 bytes
コンパイル時間 2,323 ms
コンパイル使用メモリ 205,376 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-14 22:53:10
合計ジャッジ時間 3,720 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 1 ms
6,944 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 1 ms
6,940 KB
testcase_10 AC 2 ms
6,944 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 2 ms
6,940 KB
testcase_13 AC 2 ms
6,940 KB
testcase_14 AC 9 ms
6,944 KB
testcase_15 AC 70 ms
6,944 KB
testcase_16 AC 2 ms
6,940 KB
testcase_17 AC 87 ms
6,940 KB
testcase_18 AC 90 ms
6,944 KB
testcase_19 AC 94 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
#define rep(i, n) for (int i = 0; i < (int)(n); ++i)
template<typename T>
bool chmax(T &a, T b) {
  if (a < b) {
    a = b;
    return true;
  }
  return false;
}
template<typename T>
bool chmin(T &a, T b) {
  if (a > b) {
    a = b;
    return true;
  }
  return false;
}
void solve();
int main() {
  cin.tie(nullptr)->sync_with_stdio(false);
  cout << fixed << setprecision(20);
  int t = 1;
  cin >> t;
  while (t--) {
    solve();
  }
}
__int128_t modpow(__int128_t a, __int128_t n, __int128_t mod) {
  __int128_t ret = 1;
  a %= mod;
  while (n) {
    if (n & 1) {
      ret = ret * a % mod;
    }
    a = a * a % mod;
    n >>= 1;
  }
  return ret;
}
bool is_prime(__int128_t n){
  if(n==2)return 1;
  if(n%2==0)return 0;
  vector<int>A={2,3,5,7,11,13,17,19,23,29,31,37};
  if(n<=A.back()){
    for(int a:A)if(n==a)return 1;
    return 0;
  }
  for(int a:A){
    if(modpow(a,n-1,n)!=1)return 0;
    __int128_t d=(n-1)/2;
    while(d%2==0&&modpow(a,d,n)==1)d/=2;
    __int128_t r=modpow(a,d,n);
    if(r!=1&&r!=n-1)return 0;
  }
  return 1;
}
int N;
void solve() {
  cin>>N;
  __int128_t x(N),A=x*x*x*x+4;
  cout<<(is_prime(A)?"Yes":"No")<<'\n';
  int ans=0;
  while(A%10==0){
    ++ans;
    A/=10;
  }
  cout<<ans<<'\n';
}
0