結果
問題 | No.381 名声値を稼ごう Extra |
ユーザー | n_vip |
提出日時 | 2016-06-17 22:45:07 |
言語 | Java21 (openjdk 21) |
結果 |
TLE
|
実行時間 | - |
コード長 | 346 bytes |
コンパイル時間 | 2,255 ms |
コンパイル使用メモリ | 74,312 KB |
実行使用メモリ | 68,704 KB |
最終ジャッジ日時 | 2024-10-09 16:52:16 |
合計ジャッジ時間 | 11,863 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 114 ms
53,108 KB |
testcase_01 | TLE | - |
ソースコード
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()); } }