結果
| 問題 |
No.381 名声値を稼ごう Extra
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2016-06-17 23:31:54 |
| 言語 | Java (openjdk 23) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 1,396 bytes |
| コンパイル時間 | 2,293 ms |
| コンパイル使用メモリ | 79,128 KB |
| 実行使用メモリ | 62,648 KB |
| 最終ジャッジ日時 | 2024-10-09 17:12:08 |
| 合計ジャッジ時間 | 11,841 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 1 TLE * 1 |
ソースコード
package yukicoder;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.PrintStream;
import java.io.PrintWriter;
import java.math.BigInteger;
import java.util.Arrays;
import java.util.Iterator;
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
new Main().solve();
}
void solve() {
Scanner sc = new Scanner(System.in);
BigInteger N = new BigInteger(sc.next());
System.out.println(N.bitCount());
}
private static class Scanner{
BufferedReader br;
Iterator<String> it;
Scanner(InputStream in){
br=new BufferedReader(new InputStreamReader(in));
}
String next()throws RuntimeException{
try{
if(it==null||!it.hasNext())
it=Arrays.asList(br.readLine().split(" ")).iterator();
return it.next();
}catch(IOException e){
throw new IllegalStateException();
}
}
int nextInt() throws RuntimeException{
return Integer.parseInt(next());
}
long nextLong() throws RuntimeException{
return Long.parseLong(next());
}
double nextDouble() throws RuntimeException{
return Double.parseDouble(next());
}
void close(){
try{
br.close();
}catch(IOException e){
throw new IllegalStateException();
}
}
}
private static class Printer extends PrintWriter{
Printer(PrintStream out){
super(out);
}
}
}