結果

問題 No.354 メルセンヌ素数
ユーザー villachvillach
提出日時 2017-09-19 12:06:50
言語 Java
(openjdk 23)
結果
AC  
実行時間 125 ms / 1,000 ms
コード長 188 bytes
コンパイル時間 2,805 ms
コンパイル使用メモリ 74,308 KB
実行使用メモリ 41,428 KB
最終ジャッジ日時 2024-10-02 02:35:56
合計ジャッジ時間 5,179 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
41,284 KB
testcase_01 AC 121 ms
41,140 KB
testcase_02 AC 122 ms
41,272 KB
testcase_03 AC 120 ms
40,916 KB
testcase_04 AC 119 ms
41,428 KB
testcase_05 AC 124 ms
41,084 KB
testcase_06 AC 125 ms
41,016 KB
testcase_07 AC 124 ms
41,068 KB
testcase_08 AC 123 ms
41,264 KB
testcase_09 AC 122 ms
41,396 KB
testcase_10 AC 122 ms
41,140 KB
testcase_11 AC 122 ms
41,256 KB
testcase_12 AC 120 ms
41,168 KB
testcase_13 AC 123 ms
41,004 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;

import java.util.Scanner;

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