結果

問題 No.988 N×Mマス計算(総和)
ユーザー syunsukesyunsuke
提出日時 2020-03-28 11:53:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 136 ms / 2,000 ms
コード長 329 bytes
コンパイル時間 312 ms
コンパイル使用メモリ 82,008 KB
実行使用メモリ 86,880 KB
最終ジャッジ日時 2024-07-06 07:38:53
合計ジャッジ時間 2,699 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,860 KB
testcase_01 AC 37 ms
53,792 KB
testcase_02 AC 38 ms
53,368 KB
testcase_03 AC 38 ms
51,944 KB
testcase_04 AC 39 ms
54,236 KB
testcase_05 AC 38 ms
52,192 KB
testcase_06 AC 38 ms
52,744 KB
testcase_07 AC 39 ms
53,084 KB
testcase_08 AC 38 ms
52,432 KB
testcase_09 AC 38 ms
52,276 KB
testcase_10 AC 87 ms
77,276 KB
testcase_11 AC 84 ms
85,316 KB
testcase_12 AC 110 ms
86,300 KB
testcase_13 AC 82 ms
81,400 KB
testcase_14 AC 83 ms
82,196 KB
testcase_15 AC 86 ms
76,344 KB
testcase_16 AC 101 ms
82,288 KB
testcase_17 AC 108 ms
84,324 KB
testcase_18 AC 85 ms
84,256 KB
testcase_19 AC 103 ms
84,864 KB
testcase_20 AC 136 ms
86,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M,K=map(int,input().split())
L=list(input().split())
OP=L[0]
L=L[1:]
for i in range(len(L)):
    L[i]=int(L[i])
L=sum(L)

ans=0
if OP=="+":
    for i in range(N):
        A=int(input())
        ans+=A*M
    ans+=L*N
    print(ans%K)
else:
    for i in range(N):
        A=int(input())
        ans+=A*L
    print(ans%K)
        
0