結果

問題 No.1307 Rotate and Accumulate
ユーザー tamatotamato
提出日時 2020-12-04 12:01:58
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 575 bytes
コンパイル時間 381 ms
コンパイル使用メモリ 82,456 KB
実行使用メモリ 271,176 KB
最終ジャッジ日時 2024-09-14 22:15:50
合計ジャッジ時間 7,799 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,900 KB
testcase_01 AC 37 ms
52,816 KB
testcase_02 AC 38 ms
52,304 KB
testcase_03 AC 38 ms
53,044 KB
testcase_04 AC 39 ms
53,076 KB
testcase_05 AC 38 ms
53,604 KB
testcase_06 AC 39 ms
53,360 KB
testcase_07 AC 38 ms
52,140 KB
testcase_08 TLE -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 1000000007
eps = 10**-9
mask = (1 << 30) - 1


def main():
    import sys
    input = sys.stdin.readline

    N, Q = map(int, input().split())
    A = list(map(int, input().split()))
    A.reverse()
    R = list(map(int, input().split()))

    B = [0] * N
    for r in R:
        B[r] += 1
    S = 0
    for a in A:
        S <<= 30
        S += a
    ans = 0
    for i in range(N):
        ans += S * B[i]
        ans <<= 30
    C = [0] * N
    for i in range(N*2):
        C[i%N] += ans & mask
        ans >>= 30
    print(*C)


if __name__ == '__main__':
    main()
0