結果

問題 No.354 メルセンヌ素数
ユーザー villachvillach
提出日時 2017-09-19 12:06:50
言語 Java21
(openjdk 21)
結果
AC  
実行時間 138 ms / 1,000 ms
コード長 188 bytes
コンパイル時間 3,841 ms
コンパイル使用メモリ 74,168 KB
実行使用メモリ 54,564 KB
最終ジャッジ日時 2024-04-10 01:20:55
合計ジャッジ時間 6,144 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
53,960 KB
testcase_01 AC 131 ms
54,048 KB
testcase_02 AC 128 ms
54,564 KB
testcase_03 AC 130 ms
54,124 KB
testcase_04 AC 130 ms
54,168 KB
testcase_05 AC 137 ms
53,828 KB
testcase_06 AC 138 ms
54,140 KB
testcase_07 AC 129 ms
53,972 KB
testcase_08 AC 134 ms
54,040 KB
testcase_09 AC 115 ms
52,732 KB
testcase_10 AC 130 ms
54,124 KB
testcase_11 AC 130 ms
54,240 KB
testcase_12 AC 132 ms
54,124 KB
testcase_13 AC 137 ms
54,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;

import java.util.Scanner;

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