結果

問題 No.1161 Many Powers
ユーザー hiro1729hiro1729
提出日時 2023-09-02 08:42:04
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 757 ms / 2,000 ms
コード長 162 bytes
コンパイル時間 219 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-06-11 15:35:25
合計ジャッジ時間 6,922 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,752 KB
testcase_01 AC 25 ms
10,752 KB
testcase_02 AC 26 ms
10,624 KB
testcase_03 AC 28 ms
10,752 KB
testcase_04 AC 25 ms
10,624 KB
testcase_05 AC 46 ms
10,624 KB
testcase_06 AC 53 ms
10,624 KB
testcase_07 AC 24 ms
10,624 KB
testcase_08 AC 281 ms
10,624 KB
testcase_09 AC 310 ms
10,624 KB
testcase_10 AC 132 ms
10,624 KB
testcase_11 AC 217 ms
10,624 KB
testcase_12 AC 117 ms
10,624 KB
testcase_13 AC 368 ms
10,624 KB
testcase_14 AC 665 ms
10,624 KB
testcase_15 AC 508 ms
10,752 KB
testcase_16 AC 564 ms
10,624 KB
testcase_17 AC 417 ms
10,752 KB
testcase_18 AC 305 ms
10,624 KB
testcase_19 AC 179 ms
10,624 KB
testcase_20 AC 757 ms
10,624 KB
testcase_21 AC 127 ms
10,880 KB
testcase_22 AC 413 ms
10,624 KB
testcase_23 AC 25 ms
10,624 KB
testcase_24 AC 25 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

a, b, c = map(int, input().split())
k = a // c
ans = sum(pow(i, b, c) for i in range(c)) * k % c
for i in range(k * c, a + 1):
	ans += pow(i, b, c)
print(ans % c)
0