結果

問題 No.354 メルセンヌ素数
ユーザー nCk_cvnCk_cv
提出日時 2016-07-01 18:23:54
言語 Java21
(openjdk 21)
結果
AC  
実行時間 127 ms / 1,000 ms
コード長 314 bytes
コンパイル時間 1,822 ms
コンパイル使用メモリ 74,776 KB
実行使用メモリ 54,284 KB
最終ジャッジ日時 2024-04-10 00:19:31
合計ジャッジ時間 4,212 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
54,180 KB
testcase_01 AC 124 ms
53,844 KB
testcase_02 AC 114 ms
52,972 KB
testcase_03 AC 107 ms
52,960 KB
testcase_04 AC 115 ms
53,104 KB
testcase_05 AC 113 ms
53,108 KB
testcase_06 AC 105 ms
52,628 KB
testcase_07 AC 127 ms
54,148 KB
testcase_08 AC 115 ms
54,284 KB
testcase_09 AC 120 ms
54,088 KB
testcase_10 AC 118 ms
54,112 KB
testcase_11 AC 124 ms
54,168 KB
testcase_12 AC 108 ms
52,864 KB
testcase_13 AC 116 ms
54,140 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.math.*;
import java.util.*;


public class Main {
	static int[] vy = {1,0,-1,0};
	static int[] vx = {0,1,0,-1};
	public static void main(String[] args) {	
		Scanner sc = new Scanner(System.in);
		PrintWriter out = new PrintWriter(System.out);
		System.out.println(sc.nextInt());
	}
}
0