結果

問題 No.354 メルセンヌ素数
ユーザー GrenacheGrenache
提出日時 2016-04-01 22:24:24
言語 Java21
(openjdk 21)
結果
AC  
実行時間 127 ms / 1,000 ms
コード長 244 bytes
コンパイル時間 3,328 ms
コンパイル使用メモリ 74,720 KB
実行使用メモリ 54,388 KB
最終ジャッジ日時 2024-04-09 23:59:11
合計ジャッジ時間 5,800 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
54,252 KB
testcase_01 AC 120 ms
54,184 KB
testcase_02 AC 127 ms
53,992 KB
testcase_03 AC 124 ms
54,052 KB
testcase_04 AC 123 ms
54,388 KB
testcase_05 AC 121 ms
54,084 KB
testcase_06 AC 116 ms
54,040 KB
testcase_07 AC 120 ms
53,976 KB
testcase_08 AC 118 ms
54,112 KB
testcase_09 AC 121 ms
54,152 KB
testcase_10 AC 112 ms
53,068 KB
testcase_11 AC 119 ms
54,092 KB
testcase_12 AC 121 ms
54,124 KB
testcase_13 AC 127 ms
54,180 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;


public class Main_yukicoder354 {

    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);

        int p = sc.nextInt();

        System.out.println(p);

        sc.close();
    }
}
0