結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,632 KB
testcase_01 AC 54 ms
52,232 KB
testcase_02 AC 40 ms
61,988 KB
testcase_03 AC 42 ms
60,980 KB
testcase_04 AC 40 ms
60,856 KB
testcase_05 AC 35 ms
52,568 KB
testcase_06 AC 35 ms
52,528 KB
testcase_07 AC 36 ms
52,684 KB
testcase_08 AC 36 ms
52,400 KB
testcase_09 AC 36 ms
52,748 KB
testcase_10 AC 36 ms
52,400 KB
testcase_11 AC 54 ms
52,616 KB
testcase_12 AC 35 ms
52,888 KB
testcase_13 AC 34 ms
52,712 KB
testcase_14 WA -
testcase_15 AC 35 ms
52,792 KB
testcase_16 AC 36 ms
52,656 KB
testcase_17 AC 34 ms
53,076 KB
testcase_18 AC 36 ms
53,196 KB
testcase_19 AC 37 ms
53,084 KB
testcase_20 AC 35 ms
52,196 KB
testcase_21 AC 36 ms
52,600 KB
testcase_22 AC 43 ms
60,988 KB
testcase_23 AC 41 ms
61,032 KB
testcase_24 AC 42 ms
60,832 KB
testcase_25 AC 40 ms
61,732 KB
testcase_26 WA -
testcase_27 AC 65 ms
60,924 KB
testcase_28 AC 41 ms
61,156 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())))
if M==0:
    print(1)
else:
    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