結果

問題 No.354 メルセンヌ素数
ユーザー hikari2004hikari2004
提出日時 2016-04-21 10:08:12
言語 Java21
(openjdk 21)
結果
AC  
実行時間 132 ms / 1,000 ms
コード長 185 bytes
コンパイル時間 3,369 ms
コンパイル使用メモリ 74,420 KB
実行使用メモリ 41,340 KB
最終ジャッジ日時 2024-10-02 01:11:07
合計ジャッジ時間 5,869 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
41,268 KB
testcase_01 AC 125 ms
41,324 KB
testcase_02 AC 125 ms
41,300 KB
testcase_03 AC 124 ms
41,340 KB
testcase_04 AC 124 ms
41,100 KB
testcase_05 AC 125 ms
41,268 KB
testcase_06 AC 128 ms
40,788 KB
testcase_07 AC 127 ms
41,092 KB
testcase_08 AC 130 ms
41,244 KB
testcase_09 AC 129 ms
41,112 KB
testcase_10 AC 132 ms
40,804 KB
testcase_11 AC 129 ms
41,176 KB
testcase_12 AC 126 ms
41,224 KB
testcase_13 AC 125 ms
40,916 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class No_354 {

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

}
0