結果
問題 | No.167 N^M mod 10 |
ユーザー | aaaaaaiu |
提出日時 | 2019-08-08 01:04:18 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 449 bytes |
コンパイル時間 | 2,018 ms |
コンパイル使用メモリ | 200,552 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-18 18:54:48 |
合計ジャッジ時間 | 6,290 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | RE | - |
testcase_12 | AC | 2 ms
5,376 KB |
testcase_13 | RE | - |
testcase_14 | AC | 2 ms
5,376 KB |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | AC | 2 ms
5,376 KB |
testcase_27 | RE | - |
testcase_28 | RE | - |
ソースコード
#include <bits/stdc++.h> using namespace std; typedef long long ll; int f(char c) { if ('0' <= c && c <= '9') return c-'0'; return c-'A'+10; } int main() { string n,m; cin>>n>>m; int a=n[n.size()-1]-'0'; int b; if (m.size()>=2) b=stoi(""+m[m.size()-2]+m[m.size()-1]); else b=m[m.size()-1]-'0'; if (b==0) { puts("1"); return 0; } b=b%4+4; cout<<(int)pow(a,b)%10<<endl; return 0; }