結果

問題 No.354 メルセンヌ素数
ユーザー JohnnyJohnny
提出日時 2016-04-11 11:02:33
言語 Java21
(openjdk 21)
結果
AC  
実行時間 50 ms / 1,000 ms
コード長 468 bytes
コンパイル時間 3,665 ms
コンパイル使用メモリ 73,836 KB
実行使用メモリ 36,992 KB
最終ジャッジ日時 2024-10-02 01:09:15
合計ジャッジ時間 5,089 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
36,992 KB
testcase_01 AC 47 ms
36,708 KB
testcase_02 AC 46 ms
36,688 KB
testcase_03 AC 46 ms
36,796 KB
testcase_04 AC 46 ms
36,796 KB
testcase_05 AC 47 ms
36,800 KB
testcase_06 AC 48 ms
36,988 KB
testcase_07 AC 48 ms
36,920 KB
testcase_08 AC 49 ms
36,864 KB
testcase_09 AC 46 ms
36,744 KB
testcase_10 AC 47 ms
36,780 KB
testcase_11 AC 47 ms
36,504 KB
testcase_12 AC 47 ms
36,864 KB
testcase_13 AC 50 ms
36,836 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/* package whatever; // don't place package name! */

import java.util.*;
import java.lang.*;
import java.io.*;

/* Name of the class has to be "Main" only if the class is public. */
class Ideone
{
	public static void main (String[] args) throws java.lang.Exception
	{
		InputStreamReader isr = new InputStreamReader(System.in);
		BufferedReader br = new BufferedReader(isr);
		String buf = br.readLine();
		int x = Integer.parseInt(buf);
		System.out.println(x);
	}
}
0