結果
問題 | No.1538 引きこもりさんは引き算が得意。 |
ユーザー | tenten |
提出日時 | 2023-03-24 18:55:46 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,310 bytes |
コンパイル時間 | 2,346 ms |
コンパイル使用メモリ | 88,760 KB |
実行使用メモリ | 66,040 KB |
最終ジャッジ日時 | 2024-09-18 16:33:50 |
合計ジャッジ時間 | 8,469 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 48 ms
42,424 KB |
testcase_01 | AC | 48 ms
36,656 KB |
testcase_02 | AC | 47 ms
37,100 KB |
testcase_03 | AC | 48 ms
36,904 KB |
testcase_04 | AC | 48 ms
37,048 KB |
testcase_05 | AC | 52 ms
37,176 KB |
testcase_06 | AC | 51 ms
37,268 KB |
testcase_07 | AC | 53 ms
37,360 KB |
testcase_08 | AC | 53 ms
36,972 KB |
testcase_09 | AC | 51 ms
37,288 KB |
testcase_10 | AC | 49 ms
37,280 KB |
testcase_11 | WA | - |
testcase_12 | AC | 47 ms
37,000 KB |
testcase_13 | AC | 47 ms
37,100 KB |
testcase_14 | AC | 46 ms
37,120 KB |
testcase_15 | AC | 46 ms
37,268 KB |
testcase_16 | AC | 48 ms
37,212 KB |
testcase_17 | AC | 49 ms
37,076 KB |
testcase_18 | AC | 47 ms
37,168 KB |
testcase_19 | AC | 48 ms
36,664 KB |
testcase_20 | AC | 48 ms
36,692 KB |
testcase_21 | AC | 47 ms
37,288 KB |
testcase_22 | AC | 47 ms
37,208 KB |
testcase_23 | AC | 47 ms
37,092 KB |
testcase_24 | AC | 47 ms
36,996 KB |
testcase_25 | AC | 46 ms
36,992 KB |
testcase_26 | AC | 48 ms
36,772 KB |
testcase_27 | AC | 46 ms
37,048 KB |
testcase_28 | AC | 47 ms
37,036 KB |
testcase_29 | AC | 47 ms
37,044 KB |
testcase_30 | AC | 47 ms
36,788 KB |
testcase_31 | AC | 49 ms
37,204 KB |
testcase_32 | AC | 46 ms
37,284 KB |
testcase_33 | AC | 48 ms
37,228 KB |
testcase_34 | AC | 48 ms
37,104 KB |
testcase_35 | AC | 46 ms
37,056 KB |
testcase_36 | AC | 47 ms
37,176 KB |
testcase_37 | TLE | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
testcase_41 | -- | - |
testcase_42 | -- | - |
testcase_43 | -- | - |
testcase_44 | -- | - |
testcase_45 | -- | - |
testcase_46 | -- | - |
testcase_47 | -- | - |
testcase_48 | -- | - |
testcase_49 | -- | - |
testcase_50 | -- | - |
testcase_51 | -- | - |
testcase_52 | -- | - |
testcase_53 | -- | - |
testcase_54 | -- | - |
testcase_55 | -- | - |
testcase_56 | -- | - |
ソースコード
import java.io.*; import java.util.*; import java.util.stream.*; public class Main { public static void main(String[] args) throws Exception { Scanner sc = new Scanner(); int n = sc.nextInt(); int k = sc.nextInt(); long[] sums = new long[1 << n]; for (int i = 0; i < n; i++) { sums[1 << i] = sc.nextInt(); } for (int i = 1; i < (1 << n); i++) { if (sums[i] != 0) { continue; } for (int j = 0; j < n; j++) { if ((i & (1 << j)) == 0) { continue; } sums[i] = sums[i ^ (1 << j)] + sums[1 << j]; break; } } for (int i = 1; i < (1 << n); i++) { int left = (((1 << n) - 1) ^ i); for (int j = left; j > 0; j = ((j - 1) & left)) { if (sums[i] - sums[j] == k) { System.out.println("Yes"); return; } } } System.out.println("No"); } } class Utilities { static String arrayToLineString(Object[] arr) { return Arrays.stream(arr).map(x -> x.toString()).collect(Collectors.joining("\n")); } static String arrayToLineString(int[] arr) { return String.join("\n", Arrays.stream(arr).mapToObj(String::valueOf).toArray(String[]::new)); } } 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 int[] nextIntArray() throws Exception { return Stream.of(br.readLine().split(" ")).mapToInt(Integer::parseInt).toArray(); } public String next() throws Exception { while (!st.hasMoreTokens()) { st = new StringTokenizer(br.readLine()); } return st.nextToken(); } }