結果
問題 | No.378 名声値を稼ごう |
ユーザー | yagi2 |
提出日時 | 2017-04-17 16:20:47 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 108 ms / 2,000 ms |
コード長 | 538 bytes |
コンパイル時間 | 1,816 ms |
コンパイル使用メモリ | 74,188 KB |
実行使用メモリ | 41,404 KB |
最終ジャッジ日時 | 2024-06-30 01:06:00 |
合計ジャッジ時間 | 3,145 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 107 ms
41,204 KB |
testcase_01 | AC | 105 ms
41,404 KB |
testcase_02 | AC | 108 ms
41,196 KB |
testcase_03 | AC | 108 ms
41,156 KB |
testcase_04 | AC | 92 ms
41,228 KB |
testcase_05 | AC | 105 ms
41,320 KB |
ソースコード
import java.math.BigInteger; import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); BigInteger N = new BigInteger(sc.next()); BigInteger tmp = N; BigInteger M = BigInteger.ZERO; while (tmp.compareTo(BigInteger.ZERO) == 1) { M = M.add(tmp); tmp = tmp.divide(new BigInteger("2")); } BigInteger Q = N.multiply(new BigInteger("2")); System.out.println(Q.subtract(M)); } }