結果

問題 No.354 メルセンヌ素数
ユーザー matsuyoshi30matsuyoshi30
提出日時 2016-04-01 23:49:38
言語 Java21
(openjdk 21)
結果
AC  
実行時間 141 ms / 1,000 ms
コード長 193 bytes
コンパイル時間 2,551 ms
コンパイル使用メモリ 74,168 KB
実行使用メモリ 54,376 KB
最終ジャッジ日時 2024-10-02 01:02:20
合計ジャッジ時間 5,501 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 139 ms
54,316 KB
testcase_01 AC 141 ms
54,000 KB
testcase_02 AC 139 ms
54,188 KB
testcase_03 AC 138 ms
54,032 KB
testcase_04 AC 139 ms
54,376 KB
testcase_05 AC 136 ms
54,124 KB
testcase_06 AC 134 ms
54,104 KB
testcase_07 AC 137 ms
53,908 KB
testcase_08 AC 134 ms
54,272 KB
testcase_09 AC 138 ms
54,340 KB
testcase_10 AC 136 ms
53,632 KB
testcase_11 AC 136 ms
54,000 KB
testcase_12 AC 139 ms
54,004 KB
testcase_13 AC 135 ms
54,172 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class Main {
	public static void main(String[] args) throws Exception {
		Scanner in = new Scanner(System.in);
		int p = in.nextInt();

		System.out.println(p);
	}
}
0