結果

問題 No.354 メルセンヌ素数
ユーザー tentententen
提出日時 2020-12-07 14:18:32
言語 Java21
(openjdk 21)
結果
AC  
実行時間 132 ms / 1,000 ms
コード長 199 bytes
コンパイル時間 1,984 ms
コンパイル使用メモリ 74,244 KB
実行使用メモリ 57,864 KB
最終ジャッジ日時 2023-10-17 16:29:48
合計ジャッジ時間 5,003 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
57,320 KB
testcase_01 AC 128 ms
57,864 KB
testcase_02 AC 125 ms
57,560 KB
testcase_03 AC 118 ms
54,168 KB
testcase_04 AC 132 ms
57,544 KB
testcase_05 AC 130 ms
57,472 KB
testcase_06 AC 127 ms
57,572 KB
testcase_07 AC 127 ms
57,440 KB
testcase_08 AC 131 ms
57,564 KB
testcase_09 AC 127 ms
57,504 KB
testcase_10 AC 126 ms
57,588 KB
testcase_11 AC 127 ms
57,552 KB
testcase_12 AC 127 ms
57,636 KB
testcase_13 AC 127 ms
57,632 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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