結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
54,112 KB
testcase_01 AC 129 ms
54,192 KB
testcase_02 AC 128 ms
54,044 KB
testcase_03 AC 130 ms
54,200 KB
testcase_04 AC 128 ms
54,300 KB
testcase_05 AC 131 ms
53,848 KB
testcase_06 AC 128 ms
54,024 KB
testcase_07 AC 131 ms
54,020 KB
testcase_08 AC 127 ms
54,308 KB
testcase_09 AC 128 ms
54,116 KB
testcase_10 AC 128 ms
53,892 KB
testcase_11 AC 129 ms
54,580 KB
testcase_12 AC 127 ms
53,968 KB
testcase_13 AC 130 ms
54,260 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