結果
| 問題 |
No.354 メルセンヌ素数
|
| コンテスト | |
| ユーザー |
Johnny
|
| 提出日時 | 2016-04-11 11:02:33 |
| 言語 | Java (openjdk 23) |
| 結果 |
AC
|
| 実行時間 | 50 ms / 1,000 ms |
| コード長 | 468 bytes |
| コンパイル時間 | 3,665 ms |
| コンパイル使用メモリ | 73,836 KB |
| 実行使用メモリ | 36,992 KB |
| 最終ジャッジ日時 | 2024-10-02 01:09:15 |
| 合計ジャッジ時間 | 5,089 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 13 |
ソースコード
/* package whatever; // don't place package name! */
import java.util.*;
import java.lang.*;
import java.io.*;
/* Name of the class has to be "Main" only if the class is public. */
class Ideone
{
public static void main (String[] args) throws java.lang.Exception
{
InputStreamReader isr = new InputStreamReader(System.in);
BufferedReader br = new BufferedReader(isr);
String buf = br.readLine();
int x = Integer.parseInt(buf);
System.out.println(x);
}
}
Johnny