結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,624 KB
testcase_01 AC 24 ms
10,496 KB
testcase_02 AC 24 ms
10,752 KB
testcase_03 AC 37 ms
10,624 KB
testcase_04 AC 1,296 ms
10,624 KB
testcase_05 AC 1,322 ms
10,624 KB
testcase_06 AC 1,385 ms
10,624 KB
testcase_07 AC 728 ms
10,496 KB
testcase_08 AC 1,389 ms
10,624 KB
testcase_09 AC 1,050 ms
10,624 KB
testcase_10 AC 1,369 ms
10,624 KB
testcase_11 AC 1,392 ms
10,624 KB
testcase_12 AC 728 ms
10,624 KB
testcase_13 AC 713 ms
10,624 KB
testcase_14 AC 1,069 ms
10,624 KB
testcase_15 AC 573 ms
10,624 KB
testcase_16 AC 606 ms
10,496 KB
testcase_17 AC 1,131 ms
10,624 KB
testcase_18 AC 971 ms
10,624 KB
testcase_19 AC 1,375 ms
10,624 KB
testcase_20 AC 712 ms
10,496 KB
testcase_21 AC 796 ms
10,496 KB
testcase_22 AC 1,177 ms
10,496 KB
testcase_23 AC 611 ms
10,496 KB
testcase_24 AC 1,033 ms
10,624 KB
testcase_25 AC 814 ms
10,496 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