結果
問題 | No.642 Two Operations No.1 |
ユーザー | Mcpu3 |
提出日時 | 2018-04-15 11:29:06 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 290 bytes |
コンパイル時間 | 1,900 ms |
コンパイル使用メモリ | 74,148 KB |
実行使用メモリ | 54,448 KB |
最終ジャッジ日時 | 2024-06-26 22:48:41 |
合計ジャッジ時間 | 4,620 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 124 ms
54,144 KB |
testcase_01 | AC | 123 ms
54,240 KB |
testcase_02 | AC | 121 ms
53,740 KB |
testcase_03 | AC | 122 ms
54,040 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | AC | 114 ms
53,104 KB |
testcase_14 | AC | 127 ms
53,968 KB |
ソースコード
import java.util.Scanner; class no642{ public static void main(String[] args) { Scanner stdIn=new Scanner(System.in); int n=stdIn.nextInt(); int x=1; int i=0; while(x<n) { x=x<<1; i++; } while(x!=n) { x--; i++; } System.out.println(i); } }