結果

問題 No.167 N^M mod 10
ユーザー saytakaPCsaytakaPC
提出日時 2015-03-20 00:03:47
言語 C++11
(gcc 11.4.0)
結果
TLE  
実行時間 -
コード長 272 bytes
コンパイル時間 1,101 ms
コンパイル使用メモリ 157,708 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-28 23:29:41
合計ジャッジ時間 3,967 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 TLE -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
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 AC 1 ms
5,376 KB
testcase_10 AC 1 ms
5,376 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 1 ms
5,376 KB
testcase_14 AC 1 ms
5,376 KB
testcase_15 AC 1 ms
5,376 KB
testcase_16 WA -
testcase_17 AC 1 ms
5,376 KB
testcase_18 AC 7 ms
5,376 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 1 ms
5,376 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 1 ms
5,376 KB
testcase_27 WA -
testcase_28 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:5:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    5 |         scanf("%d%d",&n,&m);
      |         ~~~~~^~~~~~~~~~~~~~

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
int main(){
	int n,m,data=1;
	scanf("%d%d",&n,&m);
	n=n*n%10;
	if(m%2==0){
		for(int i=0;i<m/2;i++){
			data*=n;data%=10;
		}
	}else{
		for(int i=0;i<m/2;i++){
			data*=n;data%=10;
		}
		data*=n;
	}
	printf("%d\n",data%10);
}
0