結果
問題 |
No.1161 Many Powers
|
ユーザー |
![]() |
提出日時 | 2020-08-13 13:29:20 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
TLE
|
実行時間 | - |
コード長 | 94 bytes |
コンパイル時間 | 103 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 20,536 KB |
最終ジャッジ日時 | 2024-10-09 19:11:16 |
合計ジャッジ時間 | 3,711 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | -- * 2 |
other | AC * 2 TLE * 1 -- * 20 |
ソースコード
A,B,C = map(int,input().split()) cnt=0 for i in range(1,A+1): cnt+=i**B print(cnt%C)