結果

問題 No.2785 四乗足す四の末尾の0
ユーザー Kiffaz17Kiffaz17
提出日時 2024-06-14 22:16:49
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 983 bytes
コンパイル時間 1,249 ms
コンパイル使用メモリ 98,072 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-06-14 22:17:02
合計ジャッジ時間 2,327 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <iostream>
#include <vector>
#include <cmath>
using namespace std;
bool isPrime(long long num) {
    if (num <= 1) return false;
    if (num == 2 || num == 3) return true;
    if (num % 2 == 0 || num % 3 == 0) return false;
    for (long long i = 5; i * i <= num; i += 6) {
        if (num % i == 0 || num % (i + 2) == 0) return false;
    }
    return true;
}
int countDivisibilityBy10(long long num) {
    int count = 0;
    while (num % 10 == 0) {
        num /= 10;
        count++;
    }
    return count;
}

int main() {
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    int T;
    cin >> T;
    vector<long long> N(T);
    for (int i = 0; i < T; ++i) {
        cin >> N[i];
    }
    for (int i = 0; i < T; ++i) {
        long long value = pow(N[i], 4) + 4;
        if (isPrime(value)) {
            cout << "Yes" <<'\n';
        } else {
            cout << "No" <<'\n';
        }
        cout << countDivisibilityBy10(value) <<'\n';
    }

    return 0;
}
0