結果

問題 No.167 N^M mod 10
ユーザー 👑 rin204rin204
提出日時 2023-07-07 22:15:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 45 ms / 1,000 ms
コード長 90 bytes
コンパイル時間 284 ms
コンパイル使用メモリ 82,256 KB
実行使用メモリ 62,160 KB
最終ジャッジ日時 2024-07-21 18:20:31
合計ジャッジ時間 2,809 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,468 KB
testcase_01 AC 37 ms
52,284 KB
testcase_02 AC 41 ms
62,160 KB
testcase_03 AC 45 ms
60,220 KB
testcase_04 AC 42 ms
60,716 KB
testcase_05 AC 37 ms
52,332 KB
testcase_06 AC 37 ms
52,880 KB
testcase_07 AC 37 ms
53,304 KB
testcase_08 AC 36 ms
53,432 KB
testcase_09 AC 36 ms
52,456 KB
testcase_10 AC 36 ms
52,248 KB
testcase_11 AC 35 ms
53,356 KB
testcase_12 AC 35 ms
53,404 KB
testcase_13 AC 37 ms
52,004 KB
testcase_14 AC 36 ms
52,320 KB
testcase_15 AC 36 ms
52,236 KB
testcase_16 AC 37 ms
52,832 KB
testcase_17 AC 37 ms
52,900 KB
testcase_18 AC 37 ms
52,324 KB
testcase_19 AC 36 ms
52,220 KB
testcase_20 AC 39 ms
53,964 KB
testcase_21 AC 39 ms
53,348 KB
testcase_22 AC 41 ms
61,824 KB
testcase_23 AC 41 ms
60,648 KB
testcase_24 AC 41 ms
62,116 KB
testcase_25 AC 41 ms
60,380 KB
testcase_26 AC 37 ms
53,800 KB
testcase_27 AC 41 ms
59,824 KB
testcase_28 AC 38 ms
52,556 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys


sys.set_int_max_str_digits(10 ** 9)

print(pow(int(input()),int(input()),10))
0