結果

問題 No.1456 Range Xor
ユーザー AsahiAsahi
提出日時 2023-02-06 23:07:52
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 925 bytes
コンパイル時間 2,052 ms
コンパイル使用メモリ 74,876 KB
実行使用メモリ 49,616 KB
最終ジャッジ日時 2024-07-05 00:41:07
合計ジャッジ時間 26,802 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
41,172 KB
testcase_01 AC 131 ms
41,544 KB
testcase_02 AC 130 ms
41,396 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 334 ms
48,032 KB
testcase_12 AC 259 ms
46,468 KB
testcase_13 AC 452 ms
48,312 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 487 ms
48,640 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 314 ms
47,576 KB
testcase_25 AC 409 ms
48,484 KB
testcase_26 AC 494 ms
48,196 KB
testcase_27 WA -
testcase_28 AC 379 ms
47,980 KB
testcase_29 AC 610 ms
48,948 KB
testcase_30 WA -
testcase_31 AC 378 ms
48,504 KB
testcase_32 AC 368 ms
48,000 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 AC 608 ms
48,964 KB
testcase_38 AC 321 ms
47,748 KB
testcase_39 WA -
testcase_40 WA -
testcase_41 AC 202 ms
43,212 KB
testcase_42 AC 284 ms
46,764 KB
testcase_43 AC 130 ms
41,364 KB
testcase_44 WA -
testcase_45 AC 130 ms
41,316 KB
testcase_46 WA -
testcase_47 AC 129 ms
41,452 KB
testcase_48 AC 129 ms
41,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;
import java.math.*;
// import java.util.stream.Stream;

class Main{
    static BufferedReader buff = new BufferedReader(new InputStreamReader(System.in));
    static StringTokenizer st;
    static PrintWriter output = new PrintWriter(System.out);
    static Scanner sc = new Scanner(System.in);
    public static void main(String[] args) throws IOException{
        int n = sc.nextInt();
        long K = sc.nextLong();
        long [] A = new long[n];
        for(int i=0;i<n;i++) A[i] = sc.nextLong();
        int r = 0;
        long sum = 0;
        boolean ok = false;
        for(int l = 0; l < n ; l ++) {
            while( r < n && sum < K) {
                sum += A[r];
                if(sum == K) ok = true;
                r++;
            }
            sum -= A[l];
            if(l == r) r++;
        }
        output.print(ok?"Yes":"No");
        output.flush();
    }
}
0