結果

問題 No.354 メルセンヌ素数
ユーザー Hiroaki KonoHiroaki Kono
提出日時 2017-10-26 23:51:48
言語 Java21
(openjdk 21)
結果
AC  
実行時間 140 ms / 1,000 ms
コード長 187 bytes
コンパイル時間 3,869 ms
コンパイル使用メモリ 73,968 KB
実行使用メモリ 41,448 KB
最終ジャッジ日時 2024-10-02 02:38:01
合計ジャッジ時間 6,922 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
41,144 KB
testcase_01 AC 136 ms
41,356 KB
testcase_02 AC 136 ms
41,368 KB
testcase_03 AC 135 ms
41,208 KB
testcase_04 AC 138 ms
41,284 KB
testcase_05 AC 134 ms
41,052 KB
testcase_06 AC 134 ms
41,156 KB
testcase_07 AC 140 ms
41,300 KB
testcase_08 AC 134 ms
41,448 KB
testcase_09 AC 136 ms
41,176 KB
testcase_10 AC 139 ms
41,176 KB
testcase_11 AC 135 ms
41,312 KB
testcase_12 AC 126 ms
39,940 KB
testcase_13 AC 138 ms
41,268 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class No354 {

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