結果

問題 No.354 メルセンヌ素数
ユーザー Mcpu3Mcpu3
提出日時 2018-08-04 23:49:26
言語 Java21
(openjdk 21)
結果
AC  
実行時間 137 ms / 1,000 ms
コード長 183 bytes
コンパイル時間 2,050 ms
コンパイル使用メモリ 73,900 KB
実行使用メモリ 57,728 KB
最終ジャッジ日時 2023-10-19 22:00:10
合計ジャッジ時間 4,786 ms
ジャッジサーバーID
(参考情報)
judge13 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
57,628 KB
testcase_01 AC 133 ms
57,484 KB
testcase_02 AC 132 ms
57,592 KB
testcase_03 AC 133 ms
57,456 KB
testcase_04 AC 136 ms
57,512 KB
testcase_05 AC 135 ms
57,592 KB
testcase_06 AC 133 ms
55,496 KB
testcase_07 AC 133 ms
57,584 KB
testcase_08 AC 136 ms
57,728 KB
testcase_09 AC 134 ms
57,500 KB
testcase_10 AC 137 ms
57,216 KB
testcase_11 AC 136 ms
57,472 KB
testcase_12 AC 132 ms
57,484 KB
testcase_13 AC 136 ms
57,464 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class Main{
	public static void main(String[] args) {
		Scanner stdIn=new Scanner(System.in);
		long p=stdIn.nextLong();
		System.out.print(p);
	}
}
0