結果

問題 No.74 貯金箱の退屈
ユーザー 👑 rin204rin204
提出日時 2022-09-29 19:30:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 44 ms / 5,000 ms
コード長 482 bytes
コンパイル時間 373 ms
コンパイル使用メモリ 82,080 KB
実行使用メモリ 62,572 KB
最終ジャッジ日時 2024-06-02 02:06:29
合計ジャッジ時間 3,092 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
52,024 KB
testcase_01 AC 32 ms
51,820 KB
testcase_02 AC 32 ms
52,764 KB
testcase_03 AC 35 ms
58,860 KB
testcase_04 AC 35 ms
58,788 KB
testcase_05 AC 35 ms
57,840 KB
testcase_06 AC 37 ms
59,408 KB
testcase_07 AC 35 ms
59,108 KB
testcase_08 AC 35 ms
58,040 KB
testcase_09 AC 35 ms
58,552 KB
testcase_10 AC 36 ms
59,420 KB
testcase_11 AC 35 ms
59,508 KB
testcase_12 AC 35 ms
58,848 KB
testcase_13 AC 38 ms
60,764 KB
testcase_14 AC 40 ms
61,232 KB
testcase_15 AC 43 ms
60,504 KB
testcase_16 AC 41 ms
60,848 KB
testcase_17 AC 32 ms
52,508 KB
testcase_18 AC 31 ms
51,940 KB
testcase_19 AC 35 ms
59,164 KB
testcase_20 AC 38 ms
60,540 KB
testcase_21 AC 40 ms
60,680 KB
testcase_22 AC 32 ms
52,872 KB
testcase_23 AC 31 ms
52,984 KB
testcase_24 AC 37 ms
60,264 KB
testcase_25 AC 38 ms
59,492 KB
testcase_26 AC 40 ms
61,020 KB
testcase_27 AC 40 ms
62,572 KB
testcase_28 AC 41 ms
60,976 KB
testcase_29 AC 41 ms
60,164 KB
testcase_30 AC 44 ms
62,392 KB
testcase_31 AC 42 ms
60,916 KB
testcase_32 AC 37 ms
59,036 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
D = list(map(int, input().split()))
W = list(map(int, input().split()))

base = []
for i, d in enumerate(D):
    r = (i + d) % n
    l = (i - d) % n
    if r == l:
        x = 1 << l
    else:
        x = (1 << l) | (1 << r)

    for b in base:
        x = min(x, b ^ x)
    if x != 0:
        base.append(x)

x = 0
for i, w in enumerate(W):
    if w == 0:
        x |= 1 << i

for b in base:
    x = min(x, b ^ x)
if x == 0:
    print("Yes")
else:
    print("No")
0