結果

問題 No.354 メルセンヌ素数
ユーザー jp_stejp_ste
提出日時 2016-05-05 18:05:02
言語 Java21
(openjdk 21)
結果
AC  
実行時間 194 ms / 1,000 ms
コード長 211 bytes
コンパイル時間 1,925 ms
コンパイル使用メモリ 74,272 KB
実行使用メモリ 54,532 KB
最終ジャッジ日時 2024-04-10 00:16:02
合計ジャッジ時間 4,534 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
52,948 KB
testcase_01 AC 123 ms
54,192 KB
testcase_02 AC 129 ms
54,372 KB
testcase_03 AC 125 ms
54,224 KB
testcase_04 AC 114 ms
52,880 KB
testcase_05 AC 126 ms
53,872 KB
testcase_06 AC 127 ms
54,164 KB
testcase_07 AC 114 ms
52,992 KB
testcase_08 AC 123 ms
54,020 KB
testcase_09 AC 115 ms
53,104 KB
testcase_10 AC 194 ms
54,164 KB
testcase_11 AC 119 ms
54,532 KB
testcase_12 AC 128 ms
54,236 KB
testcase_13 AC 129 ms
53,924 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