結果

問題 No.167 N^M mod 10
ユーザー Konton7Konton7
提出日時 2019-05-13 06:45:36
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 246 bytes
コンパイル時間 99 ms
コンパイル使用メモリ 10,672 KB
実行使用メモリ 7,968 KB
最終ジャッジ日時 2023-09-20 17:05:31
合計ジャッジ時間 1,762 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 RE -
testcase_03 RE -
testcase_04 RE -
testcase_05 AC 16 ms
7,888 KB
testcase_06 WA -
testcase_07 AC 16 ms
7,884 KB
testcase_08 AC 16 ms
7,764 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 16 ms
7,796 KB
testcase_12 AC 15 ms
7,936 KB
testcase_13 WA -
testcase_14 AC 16 ms
7,936 KB
testcase_15 WA -
testcase_16 AC 16 ms
7,888 KB
testcase_17 AC 15 ms
7,968 KB
testcase_18 AC 15 ms
7,768 KB
testcase_19 AC 15 ms
7,812 KB
testcase_20 AC 15 ms
7,788 KB
testcase_21 WA -
testcase_22 RE -
testcase_23 RE -
testcase_24 RE -
testcase_25 RE -
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
m = int(input())

n %= 10


if m == 0:
    ans = 1

else:

    for i in range(10):
        t = ( n ** (i+1) ) % 10

        if t == n and i != 0:
            f = i
            break

    m = m % f

    ans = (n**m)%10

print(ans)
0