結果

問題 No.354 メルセンヌ素数
ユーザー juger_jvjuger_jv
提出日時 2016-05-03 21:17:50
言語 Java21
(openjdk 21)
結果
AC  
実行時間 53 ms / 1,000 ms
コード長 244 bytes
コンパイル時間 2,120 ms
コンパイル使用メモリ 74,464 KB
実行使用メモリ 50,420 KB
最終ジャッジ日時 2024-04-10 00:15:38
合計ジャッジ時間 3,662 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
50,256 KB
testcase_01 AC 52 ms
50,120 KB
testcase_02 AC 51 ms
50,352 KB
testcase_03 AC 52 ms
50,012 KB
testcase_04 AC 52 ms
50,304 KB
testcase_05 AC 52 ms
50,300 KB
testcase_06 AC 52 ms
50,236 KB
testcase_07 AC 53 ms
50,408 KB
testcase_08 AC 52 ms
50,288 KB
testcase_09 AC 53 ms
49,932 KB
testcase_10 AC 53 ms
50,336 KB
testcase_11 AC 51 ms
50,420 KB
testcase_12 AC 52 ms
50,300 KB
testcase_13 AC 52 ms
50,000 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
class no354
{
    public static void main(String args[])throws IOException
    {
	BufferedReader sc=new BufferedReader(new InputStreamReader(System.in));
	int p=Integer.parseInt(sc.readLine());
	System.out.println(p);
    }
}
0