結果

問題 No.354 メルセンヌ素数
ユーザー tentententen
提出日時 2020-12-07 14:18:32
言語 Java21
(openjdk 21)
結果
AC  
実行時間 130 ms / 1,000 ms
コード長 199 bytes
コンパイル時間 1,698 ms
コンパイル使用メモリ 74,484 KB
実行使用メモリ 41,344 KB
最終ジャッジ日時 2024-09-17 13:53:53
合計ジャッジ時間 3,877 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 112 ms
41,332 KB
testcase_01 AC 101 ms
41,344 KB
testcase_02 AC 113 ms
41,088 KB
testcase_03 AC 102 ms
41,108 KB
testcase_04 AC 102 ms
41,160 KB
testcase_05 AC 116 ms
41,172 KB
testcase_06 AC 115 ms
40,912 KB
testcase_07 AC 113 ms
41,152 KB
testcase_08 AC 103 ms
41,176 KB
testcase_09 AC 114 ms
41,116 KB
testcase_10 AC 102 ms
41,000 KB
testcase_11 AC 101 ms
41,180 KB
testcase_12 AC 113 ms
41,252 KB
testcase_13 AC 130 ms
41,000 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