結果
| 問題 |
No.167 N^M mod 10
|
| コンテスト | |
| ユーザー |
matsu7874
|
| 提出日時 | 2015-03-26 23:17:39 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
RE
(最新)
AC
(最初)
|
| 実行時間 | - |
| コード長 | 211 bytes |
| コンパイル時間 | 159 ms |
| コンパイル使用メモリ | 12,672 KB |
| 実行使用メモリ | 10,752 KB |
| 最終ジャッジ日時 | 2024-09-22 01:12:54 |
| 合計ジャッジ時間 | 1,694 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 17 RE * 10 |
ソースコード
N = int(input())%10
M = int(input())
if M == 0:
print(1)
exit()
loop = [N]
n = (N**2)%10
cnt = 1
while n not in loop:
cnt += 1
loop.append(n)
n = (n*N)%10
ans = loop[M%len(loop)-1]
print(ans)
matsu7874