結果

問題 No.167 N^M mod 10
ユーザー ldsyb
提出日時 2016-03-30 22:44:07
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
WA  
実行時間 -
コード長 221 bytes
コンパイル時間 558 ms
コンパイル使用メモリ 57,980 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-10-02 08:17:38
合計ジャッジ時間 1,311 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1 WA * 1
other AC * 7 WA * 20
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <cmath>
using namespace std;

int main(){
   int n,m;
   cin >> n >> m;
   if(m == 0) cout << 1 << endl;
   else{
      n %= 10;
      m %= 5;
      cout << int(pow(n,m)) % 10 << endl;
   }
}
0