結果

問題 No.167 N^M mod 10
ユーザー rlangevinrlangevin
提出日時 2023-01-06 01:21:30
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 157 bytes
コンパイル時間 637 ms
コンパイル使用メモリ 82,248 KB
実行使用メモリ 54,200 KB
最終ジャッジ日時 2024-05-07 04:59:19
合計ジャッジ時間 3,114 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,744 KB
testcase_01 AC 38 ms
52,208 KB
testcase_02 AC 39 ms
52,520 KB
testcase_03 AC 38 ms
51,944 KB
testcase_04 AC 38 ms
53,012 KB
testcase_05 AC 38 ms
53,096 KB
testcase_06 AC 38 ms
52,484 KB
testcase_07 AC 38 ms
52,268 KB
testcase_08 AC 38 ms
52,056 KB
testcase_09 AC 38 ms
53,032 KB
testcase_10 AC 39 ms
52,992 KB
testcase_11 AC 38 ms
52,620 KB
testcase_12 AC 38 ms
51,780 KB
testcase_13 AC 38 ms
52,820 KB
testcase_14 WA -
testcase_15 AC 38 ms
53,512 KB
testcase_16 AC 38 ms
52,380 KB
testcase_17 AC 38 ms
52,756 KB
testcase_18 AC 39 ms
52,604 KB
testcase_19 AC 38 ms
52,532 KB
testcase_20 AC 38 ms
52,800 KB
testcase_21 AC 38 ms
51,824 KB
testcase_22 AC 39 ms
52,892 KB
testcase_23 AC 39 ms
53,232 KB
testcase_24 AC 40 ms
52,600 KB
testcase_25 AC 38 ms
52,000 KB
testcase_26 WA -
testcase_27 AC 39 ms
53,152 KB
testcase_28 AC 38 ms
53,628 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = input()
M = "0" + input()
if M == 0:
    print(1)
    exit()
n = int(N[-1])
if n == 0:
    print(0)
    exit()
m = int(M[-3:]) + 100
print(pow(n, m, 10))
0