結果
| 問題 | No.713 素数の和 |
| コンテスト | |
| ユーザー |
Maeda
|
| 提出日時 | 2025-09-08 13:05:15 |
| 言語 | Java (openjdk 23) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 305 bytes |
| コンパイル時間 | 4,132 ms |
| コンパイル使用メモリ | 76,912 KB |
| 実行使用メモリ | 41,728 KB |
| 最終ジャッジ日時 | 2025-09-08 13:05:21 |
| 合計ジャッジ時間 | 4,055 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 3 |
| other | AC * 1 WA * 5 |
ソースコード
import java.util.*;
public class Main {
public static void main(String[] args) {
Scanner scan = new Scanner(System.in);
int n = scan.nextInt();
int ans = 0;
for(int i = 2 ; i < n ; i++ ){
if(i % Math.sqrt(i) != 0){
ans += i;
}
}
System.out.println(ans);
}
}
Maeda