結果

問題 No.354 メルセンヌ素数
ユーザー htensaihtensai
提出日時 2019-11-21 15:33:25
言語 Java21
(openjdk 21)
結果
AC  
実行時間 122 ms / 1,000 ms
コード長 165 bytes
コンパイル時間 1,912 ms
コンパイル使用メモリ 74,164 KB
実行使用メモリ 54,128 KB
最終ジャッジ日時 2024-04-18 09:59:49
合計ジャッジ時間 4,347 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
53,992 KB
testcase_01 AC 121 ms
54,096 KB
testcase_02 AC 122 ms
53,968 KB
testcase_03 AC 104 ms
52,900 KB
testcase_04 AC 114 ms
54,084 KB
testcase_05 AC 104 ms
52,716 KB
testcase_06 AC 121 ms
54,004 KB
testcase_07 AC 119 ms
54,128 KB
testcase_08 AC 117 ms
53,856 KB
testcase_09 AC 119 ms
53,944 KB
testcase_10 AC 119 ms
53,976 KB
testcase_11 AC 109 ms
53,372 KB
testcase_12 AC 118 ms
54,128 KB
testcase_13 AC 111 ms
53,472 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
 	public static void main (String[] args) {
		Scanner sc = new Scanner(System.in);
	    System.out.println(sc.next());
	}
}
0