結果
問題 | No.1372 Median of Submasks |
ユーザー | tenten |
提出日時 | 2022-09-26 16:42:42 |
言語 | Java21 (openjdk 21) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,132 bytes |
コンパイル時間 | 2,045 ms |
コンパイル使用メモリ | 79,436 KB |
実行使用メモリ | 50,484 KB |
最終ジャッジ日時 | 2024-06-02 00:11:28 |
合計ジャッジ時間 | 7,081 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 48 ms
50,072 KB |
testcase_01 | AC | 49 ms
49,932 KB |
testcase_02 | AC | 47 ms
50,368 KB |
testcase_03 | AC | 49 ms
50,368 KB |
testcase_04 | AC | 48 ms
50,484 KB |
testcase_05 | AC | 47 ms
50,196 KB |
testcase_06 | AC | 48 ms
50,428 KB |
testcase_07 | AC | 46 ms
50,268 KB |
testcase_08 | AC | 47 ms
50,080 KB |
testcase_09 | TLE | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
ソースコード
import java.io.*; import java.util.*; public class Main { public static void main(String[] args) throws Exception { Scanner sc = new Scanner(); long n = sc.nextLong(); ArrayList<Long> list = new ArrayList<>(); for (long x = n; x > 0; x = ((x - 1) & n)) { list.add(x); } System.out.println(list.get(list.size() / 2)); } } class Scanner { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); StringTokenizer st = new StringTokenizer(""); StringBuilder sb = new StringBuilder(); public Scanner() throws Exception { } public int nextInt() throws Exception { return Integer.parseInt(next()); } public long nextLong() throws Exception { return Long.parseLong(next()); } public double nextDouble() throws Exception { return Double.parseDouble(next()); } public String next() throws Exception { while (!st.hasMoreTokens()) { st = new StringTokenizer(br.readLine()); } return st.nextToken(); } }