結果

問題 No.354 メルセンヌ素数
ユーザー fkwnw3_1243fkwnw3_1243
提出日時 2017-05-04 14:20:45
言語 Java21
(openjdk 21)
結果
AC  
実行時間 52 ms / 1,000 ms
コード長 385 bytes
コンパイル時間 2,487 ms
コンパイル使用メモリ 73,304 KB
実行使用メモリ 36,972 KB
最終ジャッジ日時 2024-10-02 02:16:50
合計ジャッジ時間 3,398 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
36,900 KB
testcase_01 AC 48 ms
36,892 KB
testcase_02 AC 47 ms
36,740 KB
testcase_03 AC 47 ms
36,564 KB
testcase_04 AC 51 ms
36,616 KB
testcase_05 AC 51 ms
36,864 KB
testcase_06 AC 50 ms
36,860 KB
testcase_07 AC 50 ms
36,864 KB
testcase_08 AC 52 ms
36,972 KB
testcase_09 AC 50 ms
36,776 KB
testcase_10 AC 48 ms
36,724 KB
testcase_11 AC 49 ms
36,608 KB
testcase_12 AC 48 ms
36,888 KB
testcase_13 AC 47 ms
36,920 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

import static java.lang.System.in;

public class Main {
    public static void main(String[] args) throws IOException {
        BufferedReader reader = new BufferedReader(new InputStreamReader(in));
        int p = Integer.parseInt(reader.readLine());
        System.out.println(p);
    }
}
0