結果

問題 No.167 N^M mod 10
ユーザー lloyzlloyz
提出日時 2023-06-07 00:03:00
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 166 bytes
コンパイル時間 88 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 11,008 KB
最終ジャッジ日時 2024-06-09 06:21:52
合計ジャッジ時間 2,103 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,624 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 33 ms
10,880 KB
testcase_04 WA -
testcase_05 AC 29 ms
10,624 KB
testcase_06 WA -
testcase_07 AC 29 ms
10,368 KB
testcase_08 AC 30 ms
10,368 KB
testcase_09 AC 30 ms
10,496 KB
testcase_10 AC 29 ms
10,368 KB
testcase_11 WA -
testcase_12 AC 30 ms
10,496 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 29 ms
10,368 KB
testcase_16 AC 29 ms
10,496 KB
testcase_17 AC 30 ms
10,368 KB
testcase_18 WA -
testcase_19 AC 30 ms
10,624 KB
testcase_20 WA -
testcase_21 AC 30 ms
10,496 KB
testcase_22 WA -
testcase_23 AC 33 ms
10,880 KB
testcase_24 AC 33 ms
10,624 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 33 ms
10,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = list(map(int, list(input())))
M = list(map(int, list(input())))

m = M[-1]
n = N[-1]
if m == 0:
    print(0)
    exit()
m -= 1
m %= 4
m += 1
print(pow(n, m, 10))
0