結果
問題 | No.1246 ANDORゲーム(max) |
ユーザー | tenten |
提出日時 | 2020-10-05 09:21:58 |
言語 | Java21 (openjdk 21) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,274 bytes |
コンパイル時間 | 2,924 ms |
コンパイル使用メモリ | 79,520 KB |
実行使用メモリ | 56,108 KB |
最終ジャッジ日時 | 2024-07-19 19:22:58 |
合計ジャッジ時間 | 11,782 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 143 ms
56,108 KB |
testcase_01 | AC | 148 ms
54,076 KB |
testcase_02 | AC | 145 ms
54,100 KB |
testcase_03 | AC | 148 ms
54,064 KB |
testcase_04 | AC | 149 ms
54,036 KB |
testcase_05 | AC | 157 ms
54,120 KB |
testcase_06 | AC | 151 ms
41,196 KB |
testcase_07 | AC | 144 ms
54,180 KB |
testcase_08 | AC | 152 ms
41,140 KB |
testcase_09 | AC | 148 ms
41,248 KB |
testcase_10 | AC | 146 ms
41,152 KB |
testcase_11 | AC | 389 ms
51,604 KB |
testcase_12 | AC | 237 ms
44,256 KB |
testcase_13 | AC | 286 ms
47,184 KB |
testcase_14 | AC | 436 ms
55,068 KB |
testcase_15 | AC | 445 ms
55,932 KB |
testcase_16 | TLE | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
ソースコード
import java.util.*; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); int t = sc.nextInt(); ArrayList<HashMap<Integer, Long>> dp = new ArrayList<>(); for (int i = 0; i <= n; i++) { dp.add(new HashMap<>()); } dp.get(0).put(t, 0L); for (int i = 1; i <= n; i++) { int a = sc.nextInt(); for (Map.Entry<Integer, Long> entry : dp.get(i - 1).entrySet()) { int next1 = (entry.getKey() & a); long value1 = entry.getValue() + Math.abs(next1 - entry.getKey()); if (!dp.get(i).containsKey(next1) || dp.get(i).get(next1) < value1) { dp.get(i).put(next1, value1); } int next2 = (entry.getKey() | a); long value2 = entry.getValue() + Math.abs(next2 - entry.getKey()); if (!dp.get(i).containsKey(next2) || dp.get(i).get(next2) < value2) { dp.get(i).put(next2, value2); } } } long max = 0; for (long x : dp.get(n).values()) { max = Math.max(max, x); } System.out.println(max); } }