結果

問題 No.1161 Many Powers
ユーザー 👑 KazunKazun
提出日時 2020-11-28 14:34:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 128 ms / 2,000 ms
コード長 138 bytes
コンパイル時間 149 ms
コンパイル使用メモリ 82,312 KB
実行使用メモリ 61,808 KB
最終ジャッジ日時 2024-09-12 22:27:33
合計ジャッジ時間 2,828 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,816 KB
testcase_01 AC 36 ms
52,288 KB
testcase_02 AC 36 ms
52,324 KB
testcase_03 AC 38 ms
53,544 KB
testcase_04 AC 37 ms
52,144 KB
testcase_05 AC 44 ms
59,308 KB
testcase_06 AC 43 ms
59,028 KB
testcase_07 AC 35 ms
52,820 KB
testcase_08 AC 80 ms
59,728 KB
testcase_09 AC 82 ms
61,040 KB
testcase_10 AC 58 ms
61,808 KB
testcase_11 AC 71 ms
59,724 KB
testcase_12 AC 54 ms
59,852 KB
testcase_13 AC 92 ms
60,368 KB
testcase_14 AC 118 ms
60,444 KB
testcase_15 AC 111 ms
61,476 KB
testcase_16 AC 128 ms
60,884 KB
testcase_17 AC 97 ms
60,152 KB
testcase_18 AC 80 ms
60,020 KB
testcase_19 AC 63 ms
59,824 KB
testcase_20 AC 128 ms
61,208 KB
testcase_21 AC 65 ms
59,888 KB
testcase_22 AC 126 ms
60,364 KB
testcase_23 AC 36 ms
53,084 KB
testcase_24 AC 36 ms
52,724 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

A,B,C=map(int,input().split())
X=[0]*(C+1)

for i in range(1,C+1):
    X[i]=(X[i-1]+pow(i,B,C))%C

Q,R=divmod(A,C)
print((Q*X[-1]+X[R])%C)
0