結果

問題 No.885 アマリクエリ
ユーザー jensenjensen
提出日時 2021-01-22 10:30:05
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 311 bytes
コンパイル時間 90 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 25,884 KB
最終ジャッジ日時 2024-06-07 20:08:29
合計ジャッジ時間 5,657 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 171 ms
25,884 KB
testcase_04 AC 171 ms
25,732 KB
testcase_05 AC 157 ms
22,488 KB
testcase_06 AC 174 ms
13,808 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 27 ms
10,624 KB
testcase_11 AC 26 ms
10,624 KB
testcase_12 AC 28 ms
10,752 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 28 ms
10,752 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 27 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
a=list(map(int,input().split()))
q=int(input())
x=list(map(int,input().split()))

x_max=100001
cnt=0
for i in range(q):
    if(x[i]<x_max):
        cnt=0
        for j in range(n):
            a[j]%=x[i]
            cnt+=a[j]
            x_max=x[i]
        print(cnt)
    else:
        print(cnt)
0