結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
41,080 KB
testcase_01 AC 105 ms
40,248 KB
testcase_02 AC 114 ms
40,860 KB
testcase_03 AC 113 ms
41,240 KB
testcase_04 AC 115 ms
40,808 KB
testcase_05 AC 113 ms
41,328 KB
testcase_06 AC 114 ms
41,264 KB
testcase_07 AC 106 ms
40,320 KB
testcase_08 AC 114 ms
41,244 KB
testcase_09 AC 116 ms
41,352 KB
testcase_10 AC 114 ms
41,036 KB
testcase_11 AC 116 ms
41,000 KB
testcase_12 AC 105 ms
40,316 KB
testcase_13 AC 114 ms
41,148 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