結果

問題 No.2007 Arbitrary Mod (Easy)
ユーザー yumechiyumechi
提出日時 2023-01-30 00:16:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 34 ms / 2,000 ms
コード長 61 bytes
コンパイル時間 241 ms
コンパイル使用メモリ 82,028 KB
実行使用メモリ 53,584 KB
最終ジャッジ日時 2024-06-29 19:08:45
合計ジャッジ時間 3,646 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,820 KB
testcase_01 AC 32 ms
51,992 KB
testcase_02 AC 32 ms
52,080 KB
testcase_03 AC 31 ms
52,644 KB
testcase_04 AC 32 ms
52,792 KB
testcase_05 AC 31 ms
53,360 KB
testcase_06 AC 32 ms
51,748 KB
testcase_07 AC 31 ms
52,840 KB
testcase_08 AC 32 ms
51,688 KB
testcase_09 AC 31 ms
52,228 KB
testcase_10 AC 32 ms
51,952 KB
testcase_11 AC 31 ms
53,052 KB
testcase_12 AC 31 ms
52,896 KB
testcase_13 AC 31 ms
52,584 KB
testcase_14 AC 32 ms
51,568 KB
testcase_15 AC 31 ms
51,760 KB
testcase_16 AC 32 ms
52,504 KB
testcase_17 AC 32 ms
53,584 KB
testcase_18 AC 31 ms
52,436 KB
testcase_19 AC 33 ms
51,740 KB
testcase_20 AC 32 ms
53,440 KB
testcase_21 AC 32 ms
51,828 KB
testcase_22 AC 32 ms
51,440 KB
testcase_23 AC 32 ms
52,184 KB
testcase_24 AC 31 ms
52,548 KB
testcase_25 AC 33 ms
51,936 KB
testcase_26 AC 32 ms
52,104 KB
testcase_27 AC 34 ms
52,884 KB
testcase_28 AC 33 ms
52,076 KB
testcase_29 AC 31 ms
53,432 KB
testcase_30 AC 33 ms
51,848 KB
testcase_31 AC 32 ms
52,472 KB
testcase_32 AC 31 ms
51,560 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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