結果

問題 No.167 N^M mod 10
ユーザー 🍡yurahuna🍡yurahuna
提出日時 2016-05-05 15:17:36
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 65 bytes
コンパイル時間 171 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 66,388 KB
最終ジャッジ日時 2024-10-05 09:40:30
合計ジャッジ時間 2,067 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 RE -
testcase_03 RE -
testcase_04 RE -
testcase_05 AC 32 ms
52,904 KB
testcase_06 WA -
testcase_07 AC 32 ms
51,820 KB
testcase_08 AC 33 ms
52,996 KB
testcase_09 AC 33 ms
53,280 KB
testcase_10 WA -
testcase_11 AC 33 ms
52,536 KB
testcase_12 AC 36 ms
52,748 KB
testcase_13 WA -
testcase_14 AC 31 ms
52,684 KB
testcase_15 AC 32 ms
52,428 KB
testcase_16 AC 32 ms
52,156 KB
testcase_17 AC 32 ms
52,888 KB
testcase_18 AC 32 ms
53,220 KB
testcase_19 AC 32 ms
52,140 KB
testcase_20 AC 32 ms
51,500 KB
testcase_21 AC 32 ms
52,480 KB
testcase_22 RE -
testcase_23 RE -
testcase_24 RE -
testcase_25 RE -
testcase_26 AC 33 ms
52,296 KB
testcase_27 RE -
testcase_28 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

a = int(input()[-1])
m = int(input())
print((a ** (m % 4)) % 10)
0