結果

問題 No.988 N×Mマス計算(総和)
ユーザー convexineqconvexineq
提出日時 2020-02-14 21:25:30
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 104 ms / 2,000 ms
コード長 359 bytes
コンパイル時間 82 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 32,924 KB
最終ジャッジ日時 2024-07-06 06:51:22
合計ジャッジ時間 1,897 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
10,752 KB
testcase_01 AC 25 ms
10,752 KB
testcase_02 AC 25 ms
10,624 KB
testcase_03 AC 25 ms
10,752 KB
testcase_04 AC 25 ms
10,752 KB
testcase_05 AC 25 ms
10,624 KB
testcase_06 AC 26 ms
10,624 KB
testcase_07 AC 25 ms
10,752 KB
testcase_08 AC 25 ms
10,752 KB
testcase_09 AC 29 ms
10,880 KB
testcase_10 AC 55 ms
17,248 KB
testcase_11 AC 73 ms
21,672 KB
testcase_12 AC 86 ms
28,036 KB
testcase_13 AC 53 ms
18,640 KB
testcase_14 AC 51 ms
18,124 KB
testcase_15 AC 47 ms
16,980 KB
testcase_16 AC 72 ms
24,800 KB
testcase_17 AC 85 ms
28,020 KB
testcase_18 AC 60 ms
20,868 KB
testcase_19 AC 79 ms
26,888 KB
testcase_20 AC 104 ms
32,924 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# coding: utf-8
# Your code here!

import sys
readline = sys.stdin.readline
read = sys.stdin.read

n,m,k = [int(i) for i in readline().split()]

x = readline().split()
op = x[0]

b = [int(i) for i in x[1:]]
a = [int(i) for i in read().split()]


#print(op,b,a)
if op == "+":
    print((sum(b)*len(a)+len(b)*sum(a))%k)



else:
    print(sum(b)*sum(a)%k)





0