結果

問題 No.167 N^M mod 10
ユーザー flippergoflippergo
提出日時 2024-10-18 22:27:49
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 339 bytes
コンパイル時間 291 ms
コンパイル使用メモリ 82,364 KB
実行使用メモリ 62,152 KB
最終ジャッジ日時 2024-10-18 22:51:18
合計ジャッジ時間 2,862 ms
ジャッジサーバーID
(参考情報)
judge7 / judge8
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,132 KB
testcase_01 AC 38 ms
52,460 KB
testcase_02 AC 48 ms
61,036 KB
testcase_03 AC 45 ms
60,612 KB
testcase_04 AC 43 ms
61,940 KB
testcase_05 AC 36 ms
52,652 KB
testcase_06 AC 37 ms
52,896 KB
testcase_07 AC 36 ms
53,160 KB
testcase_08 AC 37 ms
53,408 KB
testcase_09 AC 37 ms
52,608 KB
testcase_10 WA -
testcase_11 AC 36 ms
52,984 KB
testcase_12 AC 37 ms
52,556 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 42 ms
52,288 KB
testcase_17 AC 37 ms
52,984 KB
testcase_18 AC 37 ms
53,236 KB
testcase_19 AC 37 ms
53,172 KB
testcase_20 AC 37 ms
53,408 KB
testcase_21 AC 37 ms
52,684 KB
testcase_22 WA -
testcase_23 AC 43 ms
60,864 KB
testcase_24 AC 43 ms
61,824 KB
testcase_25 AC 44 ms
62,152 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 43 ms
60,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = input().strip()
n = int(N[-1])
cur = n
T = 1
while True:
    ncur = (cur*n)%10
    if ncur==n:break
    T += 1
    cur = ncur
M = list(map(int,list(input())))
dp = [0 for _ in range(len(M))]
dp[0] = M[0]%T
for i in range(1,len(M)):
    dp[i] = (dp[i-1]*10+M[i])%T
ans = n
for i in range(1,dp[len(M)-1]):
    ans = (ans*n)%10
print(ans)
0