結果

問題 No.9005 実行時間/使用メモリテスト(テスト用)
ユーザー ぴろずぴろず
提出日時 2015-03-27 00:48:32
言語 Java21
(openjdk 21)
結果
AC  
実行時間 124 ms / 3,000 ms
コード長 347 bytes
コンパイル時間 1,783 ms
コンパイル使用メモリ 74,044 KB
実行使用メモリ 41,728 KB
最終ジャッジ日時 2024-06-29 01:20:18
合計ジャッジ時間 2,862 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
41,212 KB
testcase_01 AC 120 ms
41,116 KB
testcase_02 AC 108 ms
40,216 KB
testcase_03 AC 124 ms
41,728 KB
testcase_04 AC 118 ms
41,420 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package no174a;

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = 100000000 * sc.nextInt();
		long sum = 0;
		for(int i=0;i<n;i++) {
			sum += Integer.numberOfTrailingZeros(Integer.bitCount(n));
		}
		System.out.println(0);
		//System.out.println(sum);
	}
}
0