結果
問題 |
No.167 N^M mod 10
|
ユーザー |
|
提出日時 | 2021-08-26 21:28:15 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
RE
|
実行時間 | - |
コード長 | 260 bytes |
コンパイル時間 | 99 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 10,880 KB |
最終ジャッジ日時 | 2024-11-18 18:48:23 |
合計ジャッジ時間 | 2,018 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 16 WA * 1 RE * 10 |
ソースコード
n=int(input()) m=int(input()) n%=10 ans=[] cnt=1 for i in range(11): cnt*=n cnt%=10 if cnt not in ans: ans.append(cnt) else: l=ans.index(cnt) r=i if m<=l: print(ans[m-1]) else: b=m%(r-l) print(ans[b+l-1]) break