結果

問題 No.167 N^M mod 10
ユーザー zaichu
提出日時 2017-11-23 21:34:46
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 608 bytes
コンパイル時間 1,463 ms
コンパイル使用メモリ 167,516 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-11-27 05:58:02
合計ジャッジ時間 2,143 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 19 WA * 8
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

template <typename T>
T gcd(T x, T y)
{
    if (y == 0)
        return x;
    return gcd(y, x % y);
}

template <typename T>
T lcm(T x, T y)
{
    if (x == 0 || y == 0)
        return 0;
    return x / gcd(x, y) * y;
}

int main()
{
    string N;
    cin >> N;
    string M;
    cin >> M;

    const int mod = 10;
    int n = N[N.size() - 1] - '0';
    int m = stoi(M.size() > 4 ? M.substr(M.size() - 4) : M);
    m += 100;
    m %= 4;
    int ans = 1;
    for (int i = 0; i < m; i++)
    {
        ans *= n;
        ans %= mod;
    }
    cout << ans << endl;
}
0