結果

問題 No.814 ジジ抜き
ユーザー Lepton_sLepton_s
提出日時 2018-01-23 15:04:16
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,354 ms / 3,000 ms
コード長 229 bytes
コンパイル時間 315 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 13,056 KB
最終ジャッジ日時 2024-06-07 18:44:10
合計ジャッジ時間 23,587 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,496 KB
testcase_01 AC 29 ms
10,496 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 44 ms
10,624 KB
testcase_04 AC 1,245 ms
13,056 KB
testcase_05 AC 1,227 ms
12,800 KB
testcase_06 AC 1,354 ms
13,056 KB
testcase_07 AC 683 ms
11,776 KB
testcase_08 AC 1,316 ms
12,800 KB
testcase_09 AC 980 ms
12,288 KB
testcase_10 AC 1,300 ms
12,800 KB
testcase_11 AC 1,315 ms
12,928 KB
testcase_12 AC 668 ms
11,776 KB
testcase_13 AC 673 ms
11,904 KB
testcase_14 AC 1,007 ms
12,288 KB
testcase_15 AC 525 ms
11,520 KB
testcase_16 AC 516 ms
11,648 KB
testcase_17 AC 1,052 ms
12,288 KB
testcase_18 AC 913 ms
12,160 KB
testcase_19 AC 1,308 ms
12,928 KB
testcase_20 AC 700 ms
11,648 KB
testcase_21 AC 762 ms
12,032 KB
testcase_22 AC 1,121 ms
12,544 KB
testcase_23 AC 571 ms
11,392 KB
testcase_24 AC 1,007 ms
12,288 KB
testcase_25 AC 783 ms
11,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

x = 0
for _ in [0]*int(input()):
    K, L, D = map(int, input().split())
    L2 = L>>D
    while(K>0 and L2%4!=0):
    	x ^= L
    	L += 1<<D
    	L2 += 1
    	K -= 1
    while(K%4!=0):
    	x ^= L+((K-1)<<D)
    	K -= 1
print(x)
0