結果
問題 | No.354 メルセンヌ素数 |
ユーザー | Democo |
提出日時 | 2016-04-09 20:38:12 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 294 bytes |
コンパイル時間 | 2,042 ms |
コンパイル使用メモリ | 74,104 KB |
実行使用メモリ | 47,060 KB |
最終ジャッジ日時 | 2024-10-04 05:07:15 |
合計ジャッジ時間 | 4,926 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | TLE | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
ソースコード
import java.util.*; class No354_Yukicoder { public static void main(String[] args) { Scanner sc = new Scanner(System.in); long p = sc.nextLong(); long mel = (2<<p)-1; int ans = 1; while(mel!=1) { if(mel%2==1) ans++; mel/=2; } System.out.println(ans); } }