結果

問題 No.670 log は定数
ユーザー yosupotyosupot
提出日時 2018-03-23 23:08:12
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,228 ms / 4,000 ms
コード長 1,303 bytes
コンパイル時間 2,305 ms
コンパイル使用メモリ 74,060 KB
実行使用メモリ 64,512 KB
最終ジャッジ日時 2023-09-07 04:10:28
合計ジャッジ時間 16,428 ms
ジャッジサーバーID
(参考情報)
judge11 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,180 ms
63,420 KB
testcase_01 AC 1,193 ms
63,568 KB
testcase_02 AC 1,189 ms
62,984 KB
testcase_03 AC 1,228 ms
63,084 KB
testcase_04 AC 1,187 ms
61,764 KB
testcase_05 AC 1,191 ms
62,964 KB
testcase_06 AC 1,200 ms
62,628 KB
testcase_07 AC 1,155 ms
64,512 KB
testcase_08 AC 1,163 ms
63,324 KB
testcase_09 AC 1,194 ms
62,888 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*; 
public class Main {
    static long seed;
    static int next() {
        seed = seed ^ (seed << 13);
        seed = seed ^ (seed >>> 7);
        seed = seed ^ (seed << 17);
        return (int)(seed >>> 33);
    }

    static final long B = 1<<20;
    static final long S = 1L<<12;

    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        int q = sc.nextInt();
        seed = sc.nextLong();
        for (int i = 0; i < 10000; i++) next();

        int[] a = new int[n];
        for (int i = 0; i < n; i++) a[i] = next();
        Arrays.sort(a);

        int[] idx = new int[(int)(B+1)];
        int c = 0;
        for (int i = 0; i <= B; i++) {
            idx[i] = c;
            while (c < n && (int)(a[c] >>> 12) == i) c++;
        }
        
        long sm = 0;
        for (int qc = 0; qc < q; qc++) {
            int x = next();

            int i = (x >>> 12);
            int l = idx[i]-1, r = idx[i+1];
            while (r-l > 1) {
                int md = (l+r)>>>1;
                if (a[md] < x) {
                    l = md;
                } else {
                    r = md;
                }
            }

            sm ^= (long)(r) * qc;
        }
        System.out.println(sm);
    }
}
0