結果
問題 | No.378 名声値を稼ごう |
ユーザー | kohaku_kohaku |
提出日時 | 2016-11-10 01:52:55 |
言語 | Java21 (openjdk 21) |
結果 |
RE
|
実行時間 | - |
コード長 | 362 bytes |
コンパイル時間 | 1,983 ms |
コンパイル使用メモリ | 73,640 KB |
実行使用メモリ | 55,860 KB |
最終ジャッジ日時 | 2024-11-25 06:08:56 |
合計ジャッジ時間 | 2,952 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | AC | 104 ms
52,656 KB |
ソースコード
import java.util.*; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); long N = sc.nextInt(); N=12; long sumA = 0; long sumB = N; N=N/2; while(N!=0){ sumA = sumA + N; N=N/2; } System.out.println(sumB-sumA); } }