結果

問題 No.167 N^M mod 10
ユーザー dangodango
提出日時 2023-06-16 19:07:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 43 ms / 1,000 ms
コード長 89 bytes
コンパイル時間 566 ms
コンパイル使用メモリ 82,060 KB
実行使用メモリ 61,956 KB
最終ジャッジ日時 2024-06-24 11:07:19
合計ジャッジ時間 2,616 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,140 KB
testcase_01 AC 37 ms
53,304 KB
testcase_02 AC 42 ms
61,956 KB
testcase_03 AC 42 ms
61,212 KB
testcase_04 AC 42 ms
60,444 KB
testcase_05 AC 37 ms
53,436 KB
testcase_06 AC 38 ms
52,164 KB
testcase_07 AC 37 ms
52,612 KB
testcase_08 AC 41 ms
51,876 KB
testcase_09 AC 38 ms
52,288 KB
testcase_10 AC 38 ms
52,152 KB
testcase_11 AC 37 ms
52,452 KB
testcase_12 AC 37 ms
52,076 KB
testcase_13 AC 38 ms
52,876 KB
testcase_14 AC 37 ms
52,596 KB
testcase_15 AC 37 ms
52,748 KB
testcase_16 AC 38 ms
52,692 KB
testcase_17 AC 38 ms
52,352 KB
testcase_18 AC 37 ms
53,056 KB
testcase_19 AC 37 ms
52,688 KB
testcase_20 AC 37 ms
52,736 KB
testcase_21 AC 37 ms
52,520 KB
testcase_22 AC 43 ms
60,352 KB
testcase_23 AC 42 ms
60,156 KB
testcase_24 AC 42 ms
61,452 KB
testcase_25 AC 42 ms
60,676 KB
testcase_26 AC 38 ms
52,824 KB
testcase_27 AC 42 ms
60,792 KB
testcase_28 AC 38 ms
52,644 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.set_int_max_str_digits(10 ** 5)
print(pow(int(input()), int(input()), 10))
0