結果

問題 No.354 メルセンヌ素数
ユーザー jp_stejp_ste
提出日時 2016-05-05 18:05:02
言語 Java21
(openjdk 21)
結果
AC  
実行時間 125 ms / 1,000 ms
コード長 211 bytes
コンパイル時間 1,895 ms
コンパイル使用メモリ 73,964 KB
実行使用メモリ 41,396 KB
最終ジャッジ日時 2024-10-02 01:13:48
合計ジャッジ時間 4,135 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
41,040 KB
testcase_01 AC 102 ms
39,644 KB
testcase_02 AC 114 ms
41,296 KB
testcase_03 AC 117 ms
41,304 KB
testcase_04 AC 107 ms
39,720 KB
testcase_05 AC 124 ms
41,196 KB
testcase_06 AC 117 ms
41,020 KB
testcase_07 AC 117 ms
41,256 KB
testcase_08 AC 115 ms
41,164 KB
testcase_09 AC 115 ms
40,940 KB
testcase_10 AC 110 ms
40,188 KB
testcase_11 AC 115 ms
41,396 KB
testcase_12 AC 125 ms
41,072 KB
testcase_13 AC 104 ms
39,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        try (Scanner scan = new Scanner(System.in)) {
            System.out.println(scan.nextInt());
        }
    }
}
0