結果

問題 No.354 メルセンヌ素数
ユーザー spaciaspacia
提出日時 2016-06-02 14:43:40
言語 Java21
(openjdk 21)
結果
AC  
実行時間 130 ms / 1,000 ms
コード長 187 bytes
コンパイル時間 2,426 ms
コンパイル使用メモリ 77,168 KB
実行使用メモリ 54,420 KB
最終ジャッジ日時 2024-04-10 00:18:25
合計ジャッジ時間 4,146 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 105 ms
52,728 KB
testcase_01 AC 105 ms
52,936 KB
testcase_02 AC 103 ms
52,844 KB
testcase_03 AC 112 ms
53,984 KB
testcase_04 AC 114 ms
54,016 KB
testcase_05 AC 114 ms
54,112 KB
testcase_06 AC 121 ms
54,096 KB
testcase_07 AC 122 ms
53,824 KB
testcase_08 AC 123 ms
53,880 KB
testcase_09 AC 122 ms
54,204 KB
testcase_10 AC 123 ms
54,420 KB
testcase_11 AC 130 ms
54,064 KB
testcase_12 AC 125 ms
54,000 KB
testcase_13 AC 118 ms
54,280 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

	public static void main (String[] args) {

		Scanner sc = new Scanner(System.in);
		System.out.println(sc.nextInt());
		sc.close();

	}

}
0