結果

問題 No.988 N×Mマス計算(総和)
ユーザー DrDrpilotDrDrpilot
提出日時 2022-02-05 18:14:35
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 296 ms / 2,000 ms
コード長 317 bytes
コンパイル時間 99 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 26,048 KB
最終ジャッジ日時 2024-06-11 13:37:37
合計ジャッジ時間 3,036 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
10,752 KB
testcase_01 AC 25 ms
10,752 KB
testcase_02 AC 24 ms
10,752 KB
testcase_03 AC 24 ms
10,752 KB
testcase_04 AC 24 ms
10,880 KB
testcase_05 AC 24 ms
10,752 KB
testcase_06 AC 24 ms
10,752 KB
testcase_07 AC 25 ms
10,752 KB
testcase_08 AC 26 ms
10,624 KB
testcase_09 AC 25 ms
10,752 KB
testcase_10 AC 119 ms
14,848 KB
testcase_11 AC 82 ms
20,784 KB
testcase_12 AC 206 ms
23,944 KB
testcase_13 AC 89 ms
17,872 KB
testcase_14 AC 81 ms
17,744 KB
testcase_15 AC 156 ms
13,312 KB
testcase_16 AC 209 ms
19,776 KB
testcase_17 AC 250 ms
22,572 KB
testcase_18 AC 85 ms
19,808 KB
testcase_19 AC 204 ms
22,672 KB
testcase_20 AC 296 ms
26,048 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m,k=map(int,input().split())
l=list(map(str,input().split()))
a=[int(input()) for _ in range(n)]
b=[]
for i in range(1,m+1):
    b.append(int(l[i]))
A=sum(a)
B=sum(b)
if l[0]=='+':
    ans=0
    for i in a:
        ans+=i*m+B
        ans%=k
else:
    ans=0
    for i in a:
        ans+=i*B
        ans%=k
print(ans)
0