結果

問題 No.167 N^M mod 10
ユーザー flippergoflippergo
提出日時 2024-10-18 23:04:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 45 ms / 1,000 ms
コード長 438 bytes
コンパイル時間 432 ms
コンパイル使用メモリ 82,400 KB
実行使用メモリ 61,812 KB
最終ジャッジ日時 2024-10-18 23:04:33
合計ジャッジ時間 2,371 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,080 KB
testcase_01 AC 35 ms
53,048 KB
testcase_02 AC 41 ms
60,900 KB
testcase_03 AC 41 ms
61,112 KB
testcase_04 AC 41 ms
60,920 KB
testcase_05 AC 37 ms
52,836 KB
testcase_06 AC 34 ms
53,436 KB
testcase_07 AC 40 ms
52,340 KB
testcase_08 AC 35 ms
52,488 KB
testcase_09 AC 36 ms
52,756 KB
testcase_10 AC 35 ms
53,268 KB
testcase_11 AC 35 ms
52,884 KB
testcase_12 AC 45 ms
52,728 KB
testcase_13 AC 35 ms
53,592 KB
testcase_14 AC 35 ms
52,348 KB
testcase_15 AC 35 ms
52,740 KB
testcase_16 AC 36 ms
53,488 KB
testcase_17 AC 34 ms
52,304 KB
testcase_18 AC 35 ms
52,808 KB
testcase_19 AC 35 ms
52,596 KB
testcase_20 AC 36 ms
53,164 KB
testcase_21 AC 35 ms
52,860 KB
testcase_22 AC 41 ms
61,352 KB
testcase_23 AC 42 ms
61,236 KB
testcase_24 AC 42 ms
61,412 KB
testcase_25 AC 41 ms
60,424 KB
testcase_26 AC 36 ms
53,036 KB
testcase_27 AC 41 ms
61,028 KB
testcase_28 AC 40 ms
61,812 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]==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