結果

問題 No.354 メルセンヌ素数
ユーザー mitsuomitsuo
提出日時 2016-05-04 12:38:04
言語 Java21
(openjdk 21)
結果
AC  
実行時間 129 ms / 1,000 ms
コード長 281 bytes
コンパイル時間 2,173 ms
コンパイル使用メモリ 75,804 KB
実行使用メモリ 54,164 KB
最終ジャッジ日時 2024-10-02 01:13:32
合計ジャッジ時間 4,795 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
53,956 KB
testcase_01 AC 125 ms
53,844 KB
testcase_02 AC 127 ms
53,864 KB
testcase_03 AC 127 ms
54,004 KB
testcase_04 AC 126 ms
53,896 KB
testcase_05 AC 126 ms
54,068 KB
testcase_06 AC 127 ms
54,000 KB
testcase_07 AC 129 ms
54,164 KB
testcase_08 AC 129 ms
53,860 KB
testcase_09 AC 128 ms
53,972 KB
testcase_10 AC 128 ms
53,916 KB
testcase_11 AC 124 ms
54,032 KB
testcase_12 AC 128 ms
53,964 KB
testcase_13 AC 125 ms
54,048 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		String input;
		if (args.length == 0) {
			input = sc.nextLine();
		} else {
			input = args[0];
		}

		System.out.println(input);

		sc.close();
	}
}
0