結果

問題 No.2007 Arbitrary Mod (Easy)
ユーザー miho-4miho-4
提出日時 2023-11-25 19:57:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 44 ms / 2,000 ms
コード長 63 bytes
コンパイル時間 249 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 53,272 KB
最終ジャッジ日時 2024-09-26 11:11:21
合計ジャッジ時間 4,211 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,204 KB
testcase_01 AC 39 ms
52,692 KB
testcase_02 AC 40 ms
52,264 KB
testcase_03 AC 39 ms
52,880 KB
testcase_04 AC 39 ms
52,264 KB
testcase_05 AC 39 ms
52,572 KB
testcase_06 AC 39 ms
52,496 KB
testcase_07 AC 41 ms
52,372 KB
testcase_08 AC 39 ms
53,228 KB
testcase_09 AC 39 ms
52,196 KB
testcase_10 AC 40 ms
52,484 KB
testcase_11 AC 40 ms
51,792 KB
testcase_12 AC 39 ms
52,656 KB
testcase_13 AC 39 ms
53,272 KB
testcase_14 AC 39 ms
52,624 KB
testcase_15 AC 39 ms
52,024 KB
testcase_16 AC 39 ms
53,016 KB
testcase_17 AC 38 ms
52,824 KB
testcase_18 AC 39 ms
52,332 KB
testcase_19 AC 38 ms
52,636 KB
testcase_20 AC 38 ms
52,888 KB
testcase_21 AC 40 ms
52,072 KB
testcase_22 AC 39 ms
52,296 KB
testcase_23 AC 40 ms
52,088 KB
testcase_24 AC 39 ms
51,740 KB
testcase_25 AC 44 ms
51,984 KB
testcase_26 AC 42 ms
52,536 KB
testcase_27 AC 39 ms
51,904 KB
testcase_28 AC 38 ms
52,688 KB
testcase_29 AC 39 ms
52,364 KB
testcase_30 AC 41 ms
52,420 KB
testcase_31 AC 39 ms
52,028 KB
testcase_32 AC 39 ms
52,268 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

a,n=map(int,input().split())
print(10**7)
print(pow(a,n,10**7))
0