結果
問題 | No.33 アメーバがたくさん |
ユーザー | mitsuo |
提出日時 | 2016-05-07 23:23:10 |
言語 | Java21 (openjdk 21) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,462 bytes |
コンパイル時間 | 2,238 ms |
コンパイル使用メモリ | 79,084 KB |
実行使用メモリ | 542,876 KB |
最終ジャッジ日時 | 2024-09-24 15:15:10 |
合計ジャッジ時間 | 5,052 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 127 ms
54,116 KB |
testcase_01 | AC | 127 ms
54,228 KB |
testcase_02 | AC | 111 ms
52,564 KB |
testcase_03 | AC | 125 ms
54,052 KB |
testcase_04 | AC | 122 ms
54,112 KB |
testcase_05 | AC | 123 ms
54,164 KB |
testcase_06 | AC | 126 ms
53,832 KB |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | MLE | - |
ソースコード
package jp.fedom.challange.yuki.l3.q33; import java.math.BigInteger; import java.util.ArrayList; import java.util.List; import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); List<String> input = new ArrayList<>(); while (sc.hasNext()) { input.add(sc.nextLine()); } System.out.println(solve(input)); sc.close(); } // public static int solve2(List<String> in) { // int N = Integer.valueOf(in.get(0).split(" ")[0]); // int D = Integer.valueOf(in.get(0).split(" ")[1]); // int T = Integer.valueOf(in.get(0).split(" ")[2]); // String[] X = in.get(1).split(" "); // // long pf = 0L; // // for (String s : X) { // int i = Integer.valueOf(s); // f |= 1 << (i + 18); // } // // for(int i = 0; i < T; i++){ // long k = f; // System.out.println(Long.toBinaryString(f)); // // f |= k << D | k >> D; // } // // return 1; // f.bitCount(); // } public static int solve(List<String> in) { int N = Integer.valueOf(in.get(0).split(" ")[0]); int D = Integer.valueOf(in.get(0).split(" ")[1]); int T = Integer.valueOf(in.get(0).split(" ")[2]); String[] X = in.get(1).split(" "); BigInteger f = BigInteger.ZERO; for (String s : X) { int i = Integer.valueOf(s); f = f.flipBit(i + 30); } for(int i = 0; i < T; i++){ BigInteger l = f.shiftLeft(D); BigInteger r = f.shiftRight(D); f = f.or(l).or(r); } return f.bitCount(); } }