結果

問題 No.1161 Many Powers
ユーザー AEnAEn
提出日時 2022-05-13 14:45:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 134 ms / 2,000 ms
コード長 237 bytes
コンパイル時間 144 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 63,132 KB
最終ジャッジ日時 2024-07-21 13:29:18
合計ジャッジ時間 2,981 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,732 KB
testcase_01 AC 39 ms
53,116 KB
testcase_02 AC 37 ms
52,732 KB
testcase_03 AC 38 ms
53,084 KB
testcase_04 AC 38 ms
52,592 KB
testcase_05 AC 49 ms
60,440 KB
testcase_06 AC 48 ms
61,192 KB
testcase_07 AC 38 ms
52,820 KB
testcase_08 AC 83 ms
61,932 KB
testcase_09 AC 86 ms
61,884 KB
testcase_10 AC 63 ms
63,064 KB
testcase_11 AC 76 ms
61,624 KB
testcase_12 AC 61 ms
61,320 KB
testcase_13 AC 96 ms
62,808 KB
testcase_14 AC 125 ms
63,132 KB
testcase_15 AC 115 ms
62,796 KB
testcase_16 AC 131 ms
62,288 KB
testcase_17 AC 104 ms
61,888 KB
testcase_18 AC 86 ms
62,480 KB
testcase_19 AC 69 ms
61,340 KB
testcase_20 AC 134 ms
62,360 KB
testcase_21 AC 72 ms
63,132 KB
testcase_22 AC 130 ms
62,472 KB
testcase_23 AC 39 ms
53,304 KB
testcase_24 AC 39 ms
52,068 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

A, B, C = map(int, input().split())
num = [0]*C
a, b = A//C, A%C
for i in range(C):
    if i == 0 or i>b:
        num[i] = a
    else:
        num[i] = a+1
res = 0
for i in range(C):
    res += num[i]*pow(i, B, C)
    res %= C
print(res)
0