結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
50,292 KB
testcase_01 AC 48 ms
49,924 KB
testcase_02 AC 47 ms
50,272 KB
testcase_03 AC 49 ms
50,068 KB
testcase_04 AC 49 ms
50,264 KB
testcase_05 AC 50 ms
50,192 KB
testcase_06 AC 49 ms
50,296 KB
testcase_07 AC 48 ms
50,304 KB
testcase_08 AC 48 ms
50,476 KB
testcase_09 AC 48 ms
50,440 KB
testcase_10 AC 48 ms
50,200 KB
testcase_11 AC 49 ms
50,260 KB
testcase_12 AC 49 ms
50,264 KB
testcase_13 AC 48 ms
50,344 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