結果

問題 No.354 メルセンヌ素数
ユーザー jimanojimano
提出日時 2018-02-11 12:07:44
言語 Java21
(openjdk 21)
結果
AC  
実行時間 51 ms / 1,000 ms
コード長 336 bytes
コンパイル時間 3,407 ms
コンパイル使用メモリ 74,180 KB
実行使用メモリ 50,344 KB
最終ジャッジ日時 2024-04-10 01:52:20
合計ジャッジ時間 4,494 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
50,256 KB
testcase_01 AC 51 ms
50,004 KB
testcase_02 AC 50 ms
50,112 KB
testcase_03 AC 50 ms
50,004 KB
testcase_04 AC 51 ms
50,144 KB
testcase_05 AC 50 ms
50,344 KB
testcase_06 AC 49 ms
50,020 KB
testcase_07 AC 48 ms
50,080 KB
testcase_08 AC 48 ms
49,992 KB
testcase_09 AC 48 ms
50,260 KB
testcase_10 AC 48 ms
50,312 KB
testcase_11 AC 47 ms
50,252 KB
testcase_12 AC 48 ms
50,272 KB
testcase_13 AC 50 ms
49,908 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package me.yukicoder;

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

public class No0354 {
	public static void main(String[] args) throws IOException {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		System.out.println(Integer.parseInt(br.readLine()));
	}
}
0