結果

問題 No.1161 Many Powers
ユーザー yakeshibayakeshiba
提出日時 2020-11-18 11:29:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 133 ms / 2,000 ms
コード長 240 bytes
コンパイル時間 399 ms
コンパイル使用メモリ 82,248 KB
実行使用メモリ 63,940 KB
最終ジャッジ日時 2024-07-23 08:54:09
合計ジャッジ時間 2,968 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,220 KB
testcase_01 AC 36 ms
52,408 KB
testcase_02 AC 38 ms
52,068 KB
testcase_03 AC 36 ms
53,216 KB
testcase_04 AC 37 ms
53,068 KB
testcase_05 AC 47 ms
60,744 KB
testcase_06 AC 46 ms
59,644 KB
testcase_07 AC 36 ms
52,208 KB
testcase_08 AC 82 ms
61,012 KB
testcase_09 AC 85 ms
62,180 KB
testcase_10 AC 62 ms
63,512 KB
testcase_11 AC 75 ms
62,488 KB
testcase_12 AC 58 ms
63,320 KB
testcase_13 AC 96 ms
62,276 KB
testcase_14 AC 122 ms
62,556 KB
testcase_15 AC 114 ms
63,940 KB
testcase_16 AC 129 ms
61,496 KB
testcase_17 AC 102 ms
63,216 KB
testcase_18 AC 84 ms
61,812 KB
testcase_19 AC 68 ms
62,568 KB
testcase_20 AC 133 ms
63,076 KB
testcase_21 AC 70 ms
62,636 KB
testcase_22 AC 126 ms
59,384 KB
testcase_23 AC 36 ms
51,948 KB
testcase_24 AC 37 ms
52,596 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

a, b, c = map(int,input().split())

ans = 0
cnt = -(-a//c)
over = a%c

#print(cnt)
#print(over)

for i in range(1,min(a,c)+1):
    if i <= over:
        ans += cnt*pow(i,b,c)
    else:
        ans += (cnt-1)*pow(i,b,c)
        
print(ans%c)
0