結果
問題 | No.378 名声値を稼ごう |
ユーザー | nCk_cv |
提出日時 | 2016-07-01 20:36:12 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 132 ms / 2,000 ms |
コード長 | 455 bytes |
コンパイル時間 | 2,111 ms |
コンパイル使用メモリ | 74,076 KB |
実行使用メモリ | 41,524 KB |
最終ジャッジ日時 | 2024-06-29 14:02:48 |
合計ジャッジ時間 | 3,341 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 132 ms
41,276 KB |
testcase_01 | AC | 127 ms
41,232 KB |
testcase_02 | AC | 114 ms
41,520 KB |
testcase_03 | AC | 110 ms
41,524 KB |
testcase_04 | AC | 126 ms
41,256 KB |
testcase_05 | AC | 116 ms
40,396 KB |
ソースコード
import java.io.*; import java.math.*; import java.util.*; public class Main { static int[] vy = {1,0,-1,0}; static int[] vx = {0,1,0,-1}; public static void main(String[] args) { Scanner sc = new Scanner(System.in); PrintWriter out = new PrintWriter(System.out); long in = sc.nextLong(); long sum = 0; long max = 0; while(in != 0) { max = Math.max(max, sum + in*2); sum += in; in /= 2; } System.out.println(max - sum); } }