結果
問題 | No.381 名声値を稼ごう Extra |
ユーザー | sugim48 |
提出日時 | 2016-06-17 22:38:32 |
言語 | Java21 (openjdk 21) |
結果 |
TLE
|
実行時間 | - |
コード長 | 329 bytes |
コンパイル時間 | 2,313 ms |
コンパイル使用メモリ | 85,672 KB |
実行使用メモリ | 55,576 KB |
最終ジャッジ日時 | 2024-10-09 16:47:42 |
合計ジャッジ時間 | 11,954 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 129 ms
41,196 KB |
testcase_01 | TLE | - |
ソースコード
import java.math.*; import java.util.Scanner; public class Main { public static void main(String[] args) { // create 2 BigInteger objects BigInteger bi1; Scanner scan = new Scanner(System.in); bi1 = new BigInteger(scan.next()); int i1 = bi1.bitCount(); String str1 = "" +i1; System.out.println( str1 ); } }