結果

問題 No.988 N×Mマス計算(総和)
ユーザー zyxwzyxw
提出日時 2021-02-04 17:35:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 122 ms / 2,000 ms
コード長 264 bytes
コンパイル時間 195 ms
コンパイル使用メモリ 82,384 KB
実行使用メモリ 89,864 KB
最終ジャッジ日時 2024-06-30 23:05:09
合計ジャッジ時間 3,012 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,676 KB
testcase_01 AC 37 ms
53,284 KB
testcase_02 AC 38 ms
52,568 KB
testcase_03 AC 38 ms
54,144 KB
testcase_04 AC 38 ms
53,752 KB
testcase_05 AC 38 ms
52,868 KB
testcase_06 AC 38 ms
53,236 KB
testcase_07 AC 39 ms
52,980 KB
testcase_08 AC 38 ms
52,412 KB
testcase_09 AC 37 ms
53,544 KB
testcase_10 AC 80 ms
78,160 KB
testcase_11 AC 77 ms
82,756 KB
testcase_12 AC 105 ms
89,376 KB
testcase_13 AC 79 ms
83,156 KB
testcase_14 AC 81 ms
82,960 KB
testcase_15 AC 85 ms
76,528 KB
testcase_16 AC 98 ms
83,712 KB
testcase_17 AC 107 ms
86,216 KB
testcase_18 AC 83 ms
86,504 KB
testcase_19 AC 102 ms
87,756 KB
testcase_20 AC 122 ms
89,864 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M,K=map(int,input().split())
data=input().split()
B=map(int,data[1:M+1])
A=[int(input()) for i in range(N)]
Bsum=sum(B)%K
ans=0
if data[0]=="*":
    for i in range(N):
        ans+=A[i]*Bsum
        ans%=K
else:
    ans+=Bsum*N+(sum(A)%K)*M
    ans%=K
print(ans)
0