結果
問題 |
No.167 N^M mod 10
|
ユーザー |
|
提出日時 | 2020-06-21 17:50:45 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 309 bytes |
コンパイル時間 | 1,854 ms |
コンパイル使用メモリ | 193,052 KB |
最終ジャッジ日時 | 2025-01-11 09:01:08 |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 14 WA * 13 |
ソースコード
#include<bits/stdc++.h> using namespace std; int main(){ cin.tie(0),ios::sync_with_stdio(false); string n,m; cin>>n>>m; int rem=0; for(auto&&i:m){ rem=rem*10+i-'0'; rem%=5; } int ans=(m.size()==1&&m.front()=='0'?1:n.back()-'0'); for(int i=0,j=ans;i<rem-1;++i){ ans*=j; } cout<<ans%10<<"\n"s; }