結果

問題 No.354 メルセンヌ素数
ユーザー jimanojimano
提出日時 2018-02-11 12:07:44
言語 Java21
(openjdk 21)
結果
AC  
実行時間 54 ms / 1,000 ms
コード長 336 bytes
コンパイル時間 2,771 ms
コンパイル使用メモリ 73,124 KB
実行使用メモリ 37,056 KB
最終ジャッジ日時 2024-10-02 03:08:43
合計ジャッジ時間 4,143 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
37,056 KB
testcase_01 AC 53 ms
36,552 KB
testcase_02 AC 53 ms
36,792 KB
testcase_03 AC 53 ms
36,844 KB
testcase_04 AC 52 ms
36,788 KB
testcase_05 AC 53 ms
36,924 KB
testcase_06 AC 54 ms
36,552 KB
testcase_07 AC 52 ms
36,804 KB
testcase_08 AC 52 ms
36,640 KB
testcase_09 AC 51 ms
36,496 KB
testcase_10 AC 51 ms
36,524 KB
testcase_11 AC 53 ms
36,964 KB
testcase_12 AC 51 ms
36,960 KB
testcase_13 AC 51 ms
36,532 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