結果
| 問題 |
No.354 メルセンヌ素数
|
| コンテスト | |
| ユーザー |
spacia
|
| 提出日時 | 2016-06-02 14:42:56 |
| 言語 | Java (openjdk 23) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 211 bytes |
| コンパイル時間 | 2,303 ms |
| コンパイル使用メモリ | 73,784 KB |
| 実行使用メモリ | 41,512 KB |
| 最終ジャッジ日時 | 2024-10-08 05:28:23 |
| 合計ジャッジ時間 | 4,892 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | RE * 1 |
| other | RE * 13 |
ソースコード
import java.util.Scanner;
public class Main {
public static void main (String[] args) {
Scanner sc = new Scanner(System.in);
int n = sc.nextInt();
System.out.println(sc.nextInt());
sc.close();
}
}
spacia