結果
問題 |
No.381 名声値を稼ごう Extra
|
ユーザー |
![]() |
提出日時 | 2016-06-17 22:45:07 |
言語 | Java (openjdk 23) |
結果 |
TLE
|
実行時間 | - |
コード長 | 346 bytes |
コンパイル時間 | 2,255 ms |
コンパイル使用メモリ | 74,312 KB |
実行使用メモリ | 68,704 KB |
最終ジャッジ日時 | 2024-10-09 16:52:16 |
合計ジャッジ時間 | 11,863 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 1 TLE * 1 |
ソースコード
import java.util.*; import java.lang.*; import java.io.*; import java.math.BigInteger; class Main { public static void main (String[] args) throws java.lang.Exception { Scanner scan = new Scanner(System.in); String str = scan.next(); // your code goes here BigInteger n = new BigInteger(str); System.out.println(n.bitCount()); } }