結果
問題 | No.9005 実行時間/使用メモリテスト(テスト用) |
ユーザー | ぴろず |
提出日時 | 2015-03-27 01:09:04 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 135 ms / 3,000 ms |
コード長 | 621 bytes |
コンパイル時間 | 2,304 ms |
コンパイル使用メモリ | 74,140 KB |
実行使用メモリ | 41,404 KB |
最終ジャッジ日時 | 2024-06-29 01:24:32 |
合計ジャッジ時間 | 3,296 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 130 ms
41,264 KB |
testcase_01 | AC | 134 ms
41,280 KB |
testcase_02 | AC | 134 ms
40,972 KB |
testcase_03 | AC | 135 ms
41,404 KB |
testcase_04 | AC | 134 ms
41,248 KB |
ソースコード
package no174a; import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int n = 10000 * (int) Math.pow(10, sc.nextInt()); long sum = 0; for(int i=0;i<n;i++) { sum += bitCount(n); } System.out.println(0); } static int bitCount(int i) { i = (i & 0x55555555) + (i >> 1 & 0x55555555); i = (i & 0x33333333) + (i >> 2 & 0x33333333); i = (i & 0x0f0f0f0f) + (i >> 4 & 0x0f0f0f0f); i = (i & 0x00ff00ff) + (i >> 8 & 0x00ff00ff); i = (i & 0x0000ffff) + (i >> 16 & 0x0000ffff); return i; } }