結果
問題 | No.378 名声値を稼ごう |
ユーザー | takeya_okino |
提出日時 | 2017-06-19 21:59:15 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 119 ms / 2,000 ms |
コード長 | 620 bytes |
コンパイル時間 | 2,563 ms |
コンパイル使用メモリ | 83,512 KB |
実行使用メモリ | 41,368 KB |
最終ジャッジ日時 | 2024-06-30 01:26:48 |
合計ジャッジ時間 | 4,100 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 115 ms
41,252 KB |
testcase_01 | AC | 107 ms
41,048 KB |
testcase_02 | AC | 112 ms
41,044 KB |
testcase_03 | AC | 106 ms
41,360 KB |
testcase_04 | AC | 119 ms
41,368 KB |
testcase_05 | AC | 114 ms
40,084 KB |
ソースコード
import java.util.*; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); long N = sc.nextLong(); long normal = 0; long score = N; for(int i = 0; i < 61; i++) { if(score > 0) { normal += score; score /= 2; } else { break; } } long skill = 0; for(int i = 0; i < 61; i++) { score = N; long a = 0; for(int j = 0; j < i; j++) { a += score; score /= 2; } a += (2 * score); skill = Math.max(skill, a); } System.out.println(skill - normal); } }