結果

問題 No.167 N^M mod 10
ユーザー flippergoflippergo
提出日時 2024-10-18 23:00:10
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 367 bytes
コンパイル時間 138 ms
コンパイル使用メモリ 82,336 KB
実行使用メモリ 61,448 KB
最終ジャッジ日時 2024-10-18 23:01:12
合計ジャッジ時間 2,219 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,232 KB
testcase_01 AC 40 ms
53,036 KB
testcase_02 AC 42 ms
61,128 KB
testcase_03 AC 51 ms
61,252 KB
testcase_04 AC 38 ms
60,928 KB
testcase_05 AC 34 ms
53,212 KB
testcase_06 AC 34 ms
52,932 KB
testcase_07 AC 38 ms
52,860 KB
testcase_08 AC 34 ms
53,072 KB
testcase_09 AC 35 ms
53,568 KB
testcase_10 AC 33 ms
52,400 KB
testcase_11 AC 34 ms
53,288 KB
testcase_12 AC 32 ms
53,288 KB
testcase_13 AC 35 ms
53,916 KB
testcase_14 WA -
testcase_15 AC 42 ms
52,320 KB
testcase_16 AC 45 ms
52,744 KB
testcase_17 AC 34 ms
53,364 KB
testcase_18 AC 33 ms
53,132 KB
testcase_19 AC 44 ms
52,288 KB
testcase_20 AC 35 ms
52,396 KB
testcase_21 AC 35 ms
52,992 KB
testcase_22 AC 40 ms
61,344 KB
testcase_23 AC 40 ms
60,372 KB
testcase_24 AC 42 ms
61,048 KB
testcase_25 AC 47 ms
61,448 KB
testcase_26 WA -
testcase_27 AC 40 ms
61,132 KB
testcase_28 AC 41 ms
61,448 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]%10
for i in range(1,len(M)):
    dp[i] = (dp[i-1]*10+M[i])%T
ans = n
if dp[-1]==0:
    dp[-1]=T
for i in range(1,dp[len(M)-1]):
    ans = (ans*n)%10
print(ans)
0