結果
| 問題 | No.3388 Sum of Function |
| コンテスト | |
| ユーザー |
ID 21712
|
| 提出日時 | 2025-12-01 02:28:39 |
| 言語 | Go (1.23.4) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 2,000 ms |
| コード長 | 194 bytes |
| コンパイル時間 | 15,471 ms |
| コンパイル使用メモリ | 254,248 KB |
| 実行使用メモリ | 7,852 KB |
| 最終ジャッジ日時 | 2025-12-01 02:28:56 |
| 合計ジャッジ時間 | 16,478 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 23 |
ソースコード
package main
import . "fmt"
import . "math/big"
func main() {
var a,b,s int64
Scan(&a, &b)
for x:=a; x<=b; x++ {
if NewInt(x).ProbablyPrime(0) {
s += x*x*x-x*x+x+1
}
}
Println(s)
}
ID 21712