結果

問題 No.670 log は定数
ユーザー yosupotyosupot
提出日時 2018-03-23 22:40:26
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,683 ms / 4,000 ms
コード長 1,310 bytes
コンパイル時間 2,275 ms
コンパイル使用メモリ 76,928 KB
実行使用メモリ 44,320 KB
最終ジャッジ日時 2024-06-24 21:53:23
合計ジャッジ時間 21,201 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,610 ms
44,320 KB
testcase_01 AC 1,616 ms
43,768 KB
testcase_02 AC 1,683 ms
44,028 KB
testcase_03 AC 1,522 ms
44,252 KB
testcase_04 AC 1,643 ms
44,168 KB
testcase_05 AC 1,612 ms
43,728 KB
testcase_06 AC 1,640 ms
43,976 KB
testcase_07 AC 1,614 ms
43,940 KB
testcase_08 AC 1,579 ms
44,292 KB
testcase_09 AC 1,618 ms
43,408 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 = 60000;
    static final long S = (1L<<32) / B + 1;

    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] / S) == i) c++;
        }
        
        long sm = 0;
        for (int qc = 0; qc < q; qc++) {
            int x = next();

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

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