結果

問題 No.1569 Nixoracci's Number
ユーザー ripityripity
提出日時 2021-12-13 21:36:34
言語 Java21
(openjdk 21)
結果
AC  
実行時間 156 ms / 2,000 ms
コード長 450 bytes
コンパイル時間 2,070 ms
コンパイル使用メモリ 73,844 KB
実行使用メモリ 54,508 KB
最終ジャッジ日時 2024-07-22 21:00:41
合計ジャッジ時間 6,510 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
53,980 KB
testcase_01 AC 131 ms
54,108 KB
testcase_02 AC 136 ms
54,440 KB
testcase_03 AC 135 ms
53,988 KB
testcase_04 AC 152 ms
54,508 KB
testcase_05 AC 147 ms
54,232 KB
testcase_06 AC 153 ms
54,320 KB
testcase_07 AC 138 ms
54,204 KB
testcase_08 AC 143 ms
54,220 KB
testcase_09 AC 138 ms
54,132 KB
testcase_10 AC 144 ms
54,296 KB
testcase_11 AC 149 ms
54,056 KB
testcase_12 AC 153 ms
54,168 KB
testcase_13 AC 150 ms
54,216 KB
testcase_14 AC 142 ms
54,076 KB
testcase_15 AC 152 ms
54,408 KB
testcase_16 AC 143 ms
54,336 KB
testcase_17 AC 143 ms
54,104 KB
testcase_18 AC 149 ms
54,204 KB
testcase_19 AC 144 ms
54,356 KB
testcase_20 AC 156 ms
54,400 KB
testcase_21 AC 153 ms
54,448 KB
testcase_22 AC 142 ms
54,004 KB
testcase_23 AC 153 ms
54,328 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    
    public static void main(String[] args) {
        
        Scanner sc = new Scanner(System.in);
        int N = sc.nextInt();
        long K = sc.nextLong();
        long[] A = new long[N+1];
        for( int i = 0; i < N; i++ ) {
            A[i] = sc.nextLong();
            A[N] ^= A[i];
        }
        
        int k = (int)((K-1)%(N+1));
        System.out.println(A[k]);
        
    }
    
}
0