結果

問題 No.814 ジジ抜き
ユーザー convexineqconvexineq
提出日時 2021-03-23 12:40:07
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,565 ms / 3,000 ms
コード長 337 bytes
コンパイル時間 270 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-05-03 23:14:19
合計ジャッジ時間 27,454 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 30 ms
10,624 KB
testcase_03 AC 45 ms
10,624 KB
testcase_04 AC 1,464 ms
10,624 KB
testcase_05 AC 1,445 ms
10,752 KB
testcase_06 AC 1,565 ms
10,752 KB
testcase_07 AC 810 ms
10,624 KB
testcase_08 AC 1,531 ms
10,624 KB
testcase_09 AC 1,119 ms
10,624 KB
testcase_10 AC 1,497 ms
10,752 KB
testcase_11 AC 1,510 ms
10,624 KB
testcase_12 AC 782 ms
10,624 KB
testcase_13 AC 791 ms
10,624 KB
testcase_14 AC 1,186 ms
10,624 KB
testcase_15 AC 623 ms
10,624 KB
testcase_16 AC 619 ms
10,624 KB
testcase_17 AC 1,228 ms
10,624 KB
testcase_18 AC 1,051 ms
10,624 KB
testcase_19 AC 1,537 ms
10,624 KB
testcase_20 AC 783 ms
10,624 KB
testcase_21 AC 889 ms
10,752 KB
testcase_22 AC 1,257 ms
10,624 KB
testcase_23 AC 664 ms
10,624 KB
testcase_24 AC 1,124 ms
10,624 KB
testcase_25 AC 924 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def g(v):
    r = 0
    while v%4!=3:
        r ^= v
        v -= 1
    return r

def f(k,L,d):
    r = 0
    v = L>>d
    # v ^ v+1 ^ ... ^ v+k-1
    r ^= g(v+k-1)^g(max(v-1,0))
    return (r<<d) ^ (0 if k%2==0 else L&((1<<d)-1))

n = int(input())
r = 0
for _ in range(n):
    K,L,D = map(int,input().split())
    r ^= f(K,L,D)
print(r)
0