結果
| 問題 |
No.167 N^M mod 10
|
| コンテスト | |
| ユーザー |
mukadenodaiou
|
| 提出日時 | 2019-03-17 23:19:22 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 72 bytes |
| コンパイル時間 | 83 ms |
| コンパイル使用メモリ | 12,416 KB |
| 実行使用メモリ | 10,752 KB |
| 最終ジャッジ日時 | 2024-07-08 02:38:42 |
| 合計ジャッジ時間 | 1,628 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 16 WA * 1 RE * 10 |
ソースコード
n, m= int(input()), int(input()) print(pow(n%10,(m%4 if m%4 else 4))%10)
mukadenodaiou