結果

問題 No.1066 #いろいろな色 / Red and Blue and more various colors (Easy)
ユーザー convexineqconvexineq
提出日時 2020-05-29 21:47:11
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 983 ms / 2,000 ms
コード長 389 bytes
コンパイル時間 106 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 45,400 KB
最終ジャッジ日時 2024-11-06 03:32:47
合計ジャッジ時間 19,577 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 507 ms
43,920 KB
testcase_01 AC 565 ms
43,664 KB
testcase_02 AC 510 ms
43,492 KB
testcase_03 AC 508 ms
44,188 KB
testcase_04 AC 511 ms
43,664 KB
testcase_05 AC 510 ms
44,188 KB
testcase_06 AC 511 ms
43,920 KB
testcase_07 AC 516 ms
43,940 KB
testcase_08 AC 748 ms
44,736 KB
testcase_09 AC 517 ms
44,192 KB
testcase_10 AC 955 ms
44,868 KB
testcase_11 AC 671 ms
44,788 KB
testcase_12 AC 647 ms
43,908 KB
testcase_13 AC 669 ms
44,604 KB
testcase_14 AC 662 ms
44,936 KB
testcase_15 AC 859 ms
45,200 KB
testcase_16 AC 603 ms
43,948 KB
testcase_17 AC 600 ms
44,480 KB
testcase_18 AC 841 ms
44,936 KB
testcase_19 AC 667 ms
43,556 KB
testcase_20 AC 520 ms
44,188 KB
testcase_21 AC 758 ms
44,884 KB
testcase_22 AC 513 ms
44,444 KB
testcase_23 AC 519 ms
43,448 KB
testcase_24 AC 512 ms
43,532 KB
testcase_25 AC 983 ms
45,400 KB
testcase_26 AC 982 ms
44,472 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# coding: utf-8
# Your code here!
import sys
readline = sys.stdin.readline
read = sys.stdin.read

n,q = map(int,readline().split())
*a, = map(int,readline().split())
*b, = map(int,readline().split())


import numpy as np

MOD = 998244353
x = np.array([1],dtype=np.int64)

for i in range(n):
    x = (a[i]-1)*(np.insert(x,i+1,0)) + np.insert(x,0,0)
    x %= MOD

for i in b:
    print(x[i])
0