結果
問題 | No.354 メルセンヌ素数 |
ユーザー | jimano |
提出日時 | 2018-02-11 12:01:14 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 506 bytes |
コンパイル時間 | 3,949 ms |
コンパイル使用メモリ | 74,076 KB |
実行使用メモリ | 37,140 KB |
最終ジャッジ日時 | 2024-11-15 18:12:59 |
合計ジャッジ時間 | 5,412 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 50 ms
36,884 KB |
testcase_01 | AC | 52 ms
36,988 KB |
testcase_02 | AC | 52 ms
36,652 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
ソースコード
package me.yukicoder; import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; public class No0354 { public static void main(String[] args) throws IOException { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); int n = Integer.parseInt(br.readLine()); long num = (long) Math.pow(2.0, n) - 1; int cnt = 0; for (char c : Long.toBinaryString(num).toCharArray()) { cnt = c == '1' ? cnt + 1 : cnt; } System.out.println(cnt); } }